summaryrefslogtreecommitdiffstats
path: root/cc/scheduler/scheduler_state_machine.h
diff options
context:
space:
mode:
authorsimonhong@chromium.org <simonhong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-10 07:11:11 +0000
committersimonhong@chromium.org <simonhong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-10 07:11:11 +0000
commit6f118458b3a03ab4d9f3b9f7fb6a34931c6afc33 (patch)
treed37eebe7ef880f1cdbcf92d01adf21fcc3339881 /cc/scheduler/scheduler_state_machine.h
parent298287da141318877006b565be159f724507b153 (diff)
downloadchromium_src-6f118458b3a03ab4d9f3b9f7fb6a34931c6afc33.zip
chromium_src-6f118458b3a03ab4d9f3b9f7fb6a34931c6afc33.tar.gz
chromium_src-6f118458b3a03ab4d9f3b9f7fb6a34931c6afc33.tar.bz2
cc: Rename FinishCommit to NotifyReadyToCommit
FinishCommit() is used to inform that painting is complete and we can ready to commit to scheduler. So, NotifyReadyToCommit() is more suitable for its role. R=brianderson@chromium.org BUG=349889 TEST=None (No functional change) Review URL: https://codereview.chromium.org/191293004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255895 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/scheduler/scheduler_state_machine.h')
-rw-r--r--cc/scheduler/scheduler_state_machine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/scheduler/scheduler_state_machine.h b/cc/scheduler/scheduler_state_machine.h
index 76f63d0..1e6e876 100644
--- a/cc/scheduler/scheduler_state_machine.h
+++ b/cc/scheduler/scheduler_state_machine.h
@@ -199,7 +199,7 @@ class CC_EXPORT SchedulerStateMachine {
// Call this only in response to receiving an ACTION_SEND_BEGIN_MAIN_FRAME
// from NextAction.
// Indicates that all painting is complete.
- void FinishCommit();
+ void NotifyReadyToCommit();
// Call this only in response to receiving an ACTION_SEND_BEGIN_MAIN_FRAME
// from NextAction if the client rejects the BeginMainFrame message.