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

Unified Diff: cc/trees/single_thread_proxy.h

Issue 18191020: UI Resource Manager (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 5 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
Index: cc/trees/single_thread_proxy.h
===================================================================
--- cc/trees/single_thread_proxy.h (revision 210393)
+++ cc/trees/single_thread_proxy.h (working copy)
@@ -77,6 +77,24 @@
// Called by the legacy path where RenderWidget does the scheduling.
void CompositeImmediately(base::TimeTicks frame_begin_time);
+ // LayerTreeHostImplClient UI resource management
+ virtual void UIResourceCreatedOnImplThread(UIResourceId uid) OVERRIDE {}
+ virtual void UIResourceLostOnImplThread(UIResourceId uid) OVERRIDE {}
+
+ // Proxy UI Resource management
+ virtual void CreateUIResource(UIResourceId uid,
+ scoped_refptr<UIResourceBitmap> bitmap,
+ bool async) OVERRIDE {}
+
+ virtual void
+ CreateUIResourceOnImplThread(UIResourceId uid,
+ scoped_refptr<UIResourceBitmap> bitmap,
+ bool async) OVERRIDE {}
+
+ virtual void DeleteUIResource(UIResourceId uid) OVERRIDE {}
+
+ virtual void DeleteUIResourceOnImplThread(UIResourceId uid) OVERRIDE {}
+
private:
explicit SingleThreadProxy(LayerTreeHost* layer_tree_host);

Powered by Google App Engine
This is Rietveld 408576698