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

Unified Diff: cc/scheduler/scheduler_state_machine.h

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
« no previous file with comments | « cc/scheduler/scheduler.cc ('k') | cc/scheduler/scheduler_state_machine_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scheduler/scheduler_state_machine.h
diff --git a/cc/scheduler/scheduler_state_machine.h b/cc/scheduler/scheduler_state_machine.h
index 8471acc941a5c81ac39ebdedac981f4f2112ed0c..63463db4d6ad36cc9387e31a6924585971a7ef68 100644
--- a/cc/scheduler/scheduler_state_machine.h
+++ b/cc/scheduler/scheduler_state_machine.h
@@ -102,18 +102,18 @@ class CC_EXPORT SchedulerStateMachine {
// thread to main.
void SetNeedsCommit();
- // As SetNeedsCommit(), but ensures the beginFrame will definitely happen even
+ // As SetNeedsCommit(), but ensures the BeginFrame will definitely happen even
// if we are not visible. After this call we expect to go through the forced
- // commit flow and then return to waiting for a non-forced beginFrame to
+ // commit flow and then return to waiting for a non-forced BeginFrame to
// finish.
void SetNeedsForcedCommit();
// Call this only in response to receiving an ACTION_BEGIN_FRAME
- // from nextState. Indicates that all painting is complete.
+ // from NextAction. Indicates that all painting is complete.
void BeginFrameComplete();
// Call this only in response to receiving an ACTION_BEGIN_FRAME
- // from nextState if the client rejects the beginFrame message.
+ // from NextAction if the client rejects the BeginFrame message.
void BeginFrameAborted();
// Request exclusive access to the textures that back single buffered
@@ -126,7 +126,7 @@ class CC_EXPORT SchedulerStateMachine {
void SetCanBeginFrame(bool can) { can_begin_frame_ = can; }
// Indicates whether drawing would, at this time, make sense.
- // canDraw can be used to supress flashes or checkerboarding
+ // CanDraw can be used to supress flashes or checkerboarding
// when such behavior would be undesirable.
void SetCanDraw(bool can);
« no previous file with comments | « cc/scheduler/scheduler.cc ('k') | cc/scheduler/scheduler_state_machine_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698