Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(714)

Unified Diff: cc/resources/skpicture_content_layer_updater.cc

Issue 12676029: cc: Fix capitalization style in chromified files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/resources/skpicture_content_layer_updater.cc
diff --git a/cc/resources/skpicture_content_layer_updater.cc b/cc/resources/skpicture_content_layer_updater.cc
index 0ca6ea826394cbd691009b20775632b23a93cbb3..6ce3df8c402f30212a51f54baa43efecb0077a04 100644
--- a/cc/resources/skpicture_content_layer_updater.cc
+++ b/cc/resources/skpicture_content_layer_updater.cc
@@ -48,23 +48,23 @@ scoped_ptr<LayerUpdater::Resource> SkPictureContentLayerUpdater::CreateResource(
void SkPictureContentLayerUpdater::PrepareToUpdate(
gfx::Rect content_rect,
gfx::Size,
- float contentsWidthScale,
+ float contents_width_scale,
float contents_height_scale,
- gfx::Rect* resultingOpaqueRect,
+ gfx::Rect* resulting_opaque_rect,
RenderingStats* stats) {
SkCanvas* canvas =
picture_.beginRecording(content_rect.width(), content_rect.height());
PaintContents(canvas,
content_rect,
- contentsWidthScale,
+ contents_width_scale,
contents_height_scale,
- resultingOpaqueRect,
+ resulting_opaque_rect,
stats);
picture_.endRecording();
}
void SkPictureContentLayerUpdater::DrawPicture(SkCanvas* canvas) {
- TRACE_EVENT0("cc", "SkPictureContentLayerUpdater::drawPicture");
+ TRACE_EVENT0("cc", "SkPictureContentLayerUpdater::DrawPicture");
canvas->drawPicture(picture_);
}

Powered by Google App Engine
This is Rietveld 408576698