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

Side by Side Diff: cc/test/fake_web_scrollbar.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « cc/test/fake_web_scrollbar.h ('k') | cc/test/layer_tree_json_parser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/test/fake_web_scrollbar.h" 5 #include "cc/test/fake_web_scrollbar.h"
6 6
7 namespace cc { 7 namespace cc {
8 8
9 void FakeWebScrollbar::setOverlay(bool is_overlay) {
10 is_overlay_ = is_overlay;
11 }
12
13 bool FakeWebScrollbar::isOverlay() const { 9 bool FakeWebScrollbar::isOverlay() const {
14 return is_overlay_; 10 return is_overlay_;
15 } 11 }
16 12
17 int FakeWebScrollbar::value() const { 13 int FakeWebScrollbar::value() const {
18 return 0; 14 return 0;
19 } 15 }
20 16
21 WebKit::WebPoint FakeWebScrollbar::location() const { 17 WebKit::WebPoint FakeWebScrollbar::location() const {
22 return WebKit::WebPoint(); 18 return WebKit::WebPoint();
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 return false; 64 return false;
69 } 65 }
70 66
71 WebKit::WebScrollbar::Orientation FakeWebScrollbar::orientation() const { 67 WebKit::WebScrollbar::Orientation FakeWebScrollbar::orientation() const {
72 return WebScrollbar::Horizontal; 68 return WebScrollbar::Horizontal;
73 } 69 }
74 70
75 FakeWebScrollbar::FakeWebScrollbar() : is_overlay_(false) {} 71 FakeWebScrollbar::FakeWebScrollbar() : is_overlay_(false) {}
76 72
77 } // namespace cc 73 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/fake_web_scrollbar.h ('k') | cc/test/layer_tree_json_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698