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

Unified Diff: cc/thread_proxy.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/thread_proxy.h ('k') | cc/tile_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/thread_proxy.cc
diff --git a/cc/thread_proxy.cc b/cc/thread_proxy.cc
index 4a4d1368b2d1d1b26293e805ef7a2a9bc7a90eba..921e9d283935cbbf2a1a792fe02ff184af4e3802 100644
--- a/cc/thread_proxy.cc
+++ b/cc/thread_proxy.cc
@@ -453,17 +453,17 @@ void ThreadProxy::setNeedsRedrawOnImplThread()
m_schedulerOnImplThread->setNeedsRedraw();
}
-void ThreadProxy::didSwapUseIncompleteTextureOnImplThread()
+void ThreadProxy::didSwapUseIncompleteTileOnImplThread()
{
DCHECK(isImplThread());
- TRACE_EVENT0("cc", "ThreadProxy::didSwapUseIncompleteTextureOnImplThread");
- m_schedulerOnImplThread->didSwapUseIncompleteTexture();
+ TRACE_EVENT0("cc", "ThreadProxy::didSwapUseIncompleteTileOnImplThread");
+ m_schedulerOnImplThread->didSwapUseIncompleteTile();
}
-void ThreadProxy::didUploadVisibleHighResolutionTileOnImplTread()
+void ThreadProxy::didUploadVisibleHighResolutionTileOnImplThread()
{
DCHECK(isImplThread());
- TRACE_EVENT0("cc", "ThreadProxy::didUploadVisibleHighResolutionTileOnImplTread");
+ TRACE_EVENT0("cc", "ThreadProxy::didUploadVisibleHighResolutionTileOnImplThread");
m_schedulerOnImplThread->setNeedsRedraw();
}
@@ -755,11 +755,11 @@ void ThreadProxy::scheduledActionCommit()
m_schedulerOnImplThread->setVisible(m_layerTreeHostImpl->visible());
}
-void ThreadProxy::scheduledActionCheckForCompletedTextures()
+void ThreadProxy::scheduledActionCheckForCompletedTileUploads()
{
DCHECK(isImplThread());
- TRACE_EVENT0("cc", "ThreadProxy::scheduledActionCheckForCompletedTextures");
- m_layerTreeHostImpl->checkForCompletedTextures();
+ TRACE_EVENT0("cc", "ThreadProxy::scheduledActionCheckForCompletedTileUploads");
+ m_layerTreeHostImpl->checkForCompletedTileUploads();
}
void ThreadProxy::scheduledActionActivatePendingTreeIfNeeded()
« no previous file with comments | « cc/thread_proxy.h ('k') | cc/tile_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698