Fixing source files that do not have newlines at the end.

Found using the new unsubmitted newline_checker slave script:
piraeus.cnc.corp.google.com:10125/builders/Skia_House_Keeping/builds/5/steps/shell_1/logs/stdio
Review URL: https://codereview.appspot.com/6443124

git-svn-id: http://skia.googlecode.com/svn/trunk@5097 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
rmistry@google.com 2012-08-14 20:27:54 +00:00
parent c0f1dfb4ed
commit bda03db289
14 changed files with 28 additions and 14 deletions

View File

@ -141,4 +141,5 @@ void DebuggerCommandsView::onDraw(SkCanvas* canvas) {
r = SkRect::MakeXYWH(this->width() - SKDEBUGGER_RESIZEBARSIZE, 0,
SKDEBUGGER_RESIZEBARSIZE, this->height());
canvas->drawRect(r, p);
}
}

View File

@ -48,4 +48,5 @@ void DebuggerStateView::onDraw(SkCanvas* canvas) {
p.setColor(SKDEBUGGER_RESIZEBARCOLOR);
r = SkRect::MakeXYWH(0, 0, this->width(), SKDEBUGGER_RESIZEBARSIZE);
canvas->drawRect(r, p);
}
}

View File

@ -192,4 +192,5 @@ SkColor SkColorPalette::selectColorFromGradient(SkPoint& cursorPosition) {
retval += ((int)(g * 255) << 8);
retval += (int)(b * 255);
return retval;
}
}

View File

@ -31,4 +31,5 @@ private:
typedef SkView INHERITED;
};
#endif
#endif

View File

@ -47,4 +47,5 @@ void SkNetPipeController::notifyWritten(size_t bytes) {
fTotalWritten += bytes;
fAtomsWritten += 1;
}
}

View File

@ -33,4 +33,5 @@ private:
SkGPipeReader::Status fStatus;
};
#endif
#endif

View File

@ -72,4 +72,5 @@ void ReaderView::draw(SkCanvas* canvas) {
//the front bitmap is always drawn
canvas->drawBitmap(fBufferBitmaps[fFront], 0, 0, NULL);
this->inval(NULL);
}
}

View File

@ -13,4 +13,5 @@
#import "SkNSView.h"
@interface SimpleNSView : SkNSView
- (id)initWithDefaults;
@end
@end

View File

@ -43,4 +43,5 @@ class SkEvent;
- (void)onUpdateMenu:(const SkOSMenu*)menu;
- (void)postInvalWithRect:(const SkIRect*)rectOrNil;
- (BOOL)onHandleEvent:(const SkEvent&)event;
@end
@end

View File

@ -43,4 +43,5 @@ struct FPSState;
- (void)setSkTitle:(const char*)title;
- (void)postInvalWithRect:(const SkIRect*)rectOrNil;
@end
@end

View File

@ -94,4 +94,5 @@ private:
//////////////////////////////////////////////////////////////////////////////
static SkView* MyFactory() { return new GradientView; }
static SkViewRegister reg(MyFactory);
static SkViewRegister reg(MyFactory);

View File

@ -52,4 +52,5 @@ private:
//////////////////////////////////////////////////////////////////////////////
static SkView* MyFactory() { return new SimpleView; }
static SkViewRegister reg(MyFactory);
static SkViewRegister reg(MyFactory);

View File

@ -60,4 +60,5 @@ private:
//////////////////////////////////////////////////////////////////////////////
static SkView* MyFactory() { return new SpiralView; }
static SkViewRegister reg(MyFactory);
static SkViewRegister reg(MyFactory);

View File

@ -151,4 +151,5 @@ const GrGLInterface* GrGLCreateANGLEInterface() {
}
glInterface.get()->ref();
return glInterface.get();
}
}