summaryrefslogtreecommitdiffstats
path: root/cc/layers/nine_patch_layer.cc
diff options
context:
space:
mode:
authordanakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-25 03:29:29 +0000
committerdanakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-25 03:29:29 +0000
commited511b8dbf23c216aa87e11e9d49c1e69d82de60 (patch)
treeff1bdc0c8c74a0357c07847d4f3e9f32190930df /cc/layers/nine_patch_layer.cc
parent69fc57001ee3a1496830488254710865bc8f52b3 (diff)
downloadchromium_src-ed511b8dbf23c216aa87e11e9d49c1e69d82de60.zip
chromium_src-ed511b8dbf23c216aa87e11e9d49c1e69d82de60.tar.gz
chromium_src-ed511b8dbf23c216aa87e11e9d49c1e69d82de60.tar.bz2
cc: Fix capitalization style in chromified files.
Style-only change. Many already-chromified files missed a variable or function name here and there. This grabs (hopefully) all of them. For the record, I found these with: git gs '[^a-zA-Z0-9_>\."][a-jl-z]\+[A-Z][A-Za-z0-9_]*\($\|[ !=;,\.^&*)"]\)' R=enne BUG= Review URL: https://chromiumcodereview.appspot.com/12676029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@190326 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/layers/nine_patch_layer.cc')
-rw-r--r--cc/layers/nine_patch_layer.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/cc/layers/nine_patch_layer.cc b/cc/layers/nine_patch_layer.cc
index a4b4f70..4301a85 100644
--- a/cc/layers/nine_patch_layer.cc
+++ b/cc/layers/nine_patch_layer.cc
@@ -63,12 +63,12 @@ void NinePatchLayer::Update(ResourceUpdateQueue* queue,
if (resource_ &&
(bitmap_dirty_ || resource_->texture()->resource_id() == 0)) {
- gfx::Rect contentRect(gfx::Point(),
- gfx::Size(bitmap_.width(), bitmap_.height()));
+ gfx::Rect content_rect(gfx::Point(),
+ gfx::Size(bitmap_.width(), bitmap_.height()));
ResourceUpdate upload = ResourceUpdate::Create(resource_->texture(),
&bitmap_,
- contentRect,
- contentRect,
+ content_rect,
+ content_rect,
gfx::Vector2d());
queue->AppendFullUpload(upload);
bitmap_dirty_ = false;