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

Unified Diff: cc/scheduler.cc

Issue 12022043: cc: Fix inappropriate use of term "texture". (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/InitializeTile/UploadTile/ and s/CompletedSetPixels/CompletedTileUploads/ Created 7 years, 11 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.h ('k') | cc/scheduler_state_machine.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scheduler.cc
diff --git a/cc/scheduler.cc b/cc/scheduler.cc
index b290740b7c900bbc731eff1d6c0f6fc859fcb6f0..72631707fd9a832e93606f5cba7ee04db831d439 100644
--- a/cc/scheduler.cc
+++ b/cc/scheduler.cc
@@ -72,9 +72,9 @@ void Scheduler::setNeedsRedraw()
processScheduledActions();
}
-void Scheduler::didSwapUseIncompleteTexture()
+void Scheduler::didSwapUseIncompleteTile()
{
- m_stateMachine.didSwapUseIncompleteTexture();
+ m_stateMachine.didSwapUseIncompleteTile();
processScheduledActions();
}
@@ -183,8 +183,8 @@ void Scheduler::processScheduledActions()
case SchedulerStateMachine::ACTION_COMMIT:
m_client->scheduledActionCommit();
break;
- case SchedulerStateMachine::ACTION_CHECK_FOR_NEW_TEXTURES:
- m_client->scheduledActionCheckForCompletedTextures();
+ case SchedulerStateMachine::ACTION_CHECK_FOR_COMPLETED_TILE_UPLOADS:
+ m_client->scheduledActionCheckForCompletedTileUploads();
break;
case SchedulerStateMachine::ACTION_ACTIVATE_PENDING_TREE_IF_NEEDED:
m_client->scheduledActionActivatePendingTreeIfNeeded();
« no previous file with comments | « cc/scheduler.h ('k') | cc/scheduler_state_machine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698