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

Unified Diff: cc/test/fake_layer_tree_host_impl_client.h

Issue 12648005: cc: Chromify the LayerTreeHostImpl class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Compl 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/test/fake_layer_tree_host_impl.cc ('k') | cc/test/fake_layer_tree_host_impl_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_layer_tree_host_impl_client.h
diff --git a/cc/test/fake_layer_tree_host_impl_client.h b/cc/test/fake_layer_tree_host_impl_client.h
index e50ca5704f4ffe9483062b6e3e80b8a0dc67b732..fc68a18334e87bc2b337ceebb780ee27c5ad2c0d 100644
--- a/cc/test/fake_layer_tree_host_impl_client.h
+++ b/cc/test/fake_layer_tree_host_impl_client.h
@@ -12,25 +12,27 @@ namespace cc {
class FakeLayerTreeHostImplClient : public LayerTreeHostImplClient {
public:
// LayerTreeHostImplClient implementation.
- virtual void didLoseOutputSurfaceOnImplThread() OVERRIDE { }
- virtual void onSwapBuffersCompleteOnImplThread() OVERRIDE { }
- virtual void onVSyncParametersChanged(
+ virtual void DidLoseOutputSurfaceOnImplThread() OVERRIDE {}
+ virtual void OnSwapBuffersCompleteOnImplThread() OVERRIDE {}
+ virtual void OnVSyncParametersChanged(
base::TimeTicks,
- base::TimeDelta) OVERRIDE { }
- virtual void onCanDrawStateChanged(bool) OVERRIDE { }
- virtual void onHasPendingTreeStateChanged(bool) OVERRIDE { }
- virtual void setNeedsRedrawOnImplThread() OVERRIDE { }
- virtual void didUploadVisibleHighResolutionTileOnImplThread() OVERRIDE { }
- virtual void setNeedsCommitOnImplThread() OVERRIDE { }
- virtual void setNeedsManageTilesOnImplThread() OVERRIDE { }
- virtual void postAnimationEventsToMainThreadOnImplThread(
- scoped_ptr<AnimationEventsVector>,
- base::Time) OVERRIDE { }
- virtual bool reduceContentsTextureMemoryOnImplThread(size_t, int) OVERRIDE;
- virtual void reduceWastedContentsTextureMemoryOnImplThread() OVERRIDE { }
- virtual void sendManagedMemoryStats() OVERRIDE { }
- virtual bool isInsideDraw() OVERRIDE;
- virtual void renewTreePriority() OVERRIDE { }
+ base::TimeDelta) OVERRIDE {}
+ virtual void OnCanDrawStateChanged(bool can_draw) OVERRIDE {}
+ virtual void OnHasPendingTreeStateChanged(bool has_pending_tree) OVERRIDE {}
+ virtual void SetNeedsRedrawOnImplThread() OVERRIDE {}
+ virtual void DidUploadVisibleHighResolutionTileOnImplThread() OVERRIDE {}
+ virtual void SetNeedsCommitOnImplThread() OVERRIDE {}
+ virtual void SetNeedsManageTilesOnImplThread() OVERRIDE {}
+ virtual void PostAnimationEventsToMainThreadOnImplThread(
+ scoped_ptr<AnimationEventsVector> events,
+ base::Time wall_clock_time) OVERRIDE {}
+ virtual bool ReduceContentsTextureMemoryOnImplThread(
+ size_t limit_bytes,
+ int priority_cutoff) OVERRIDE;
+ virtual void ReduceWastedContentsTextureMemoryOnImplThread() OVERRIDE {}
+ virtual void SendManagedMemoryStats() OVERRIDE {}
+ virtual bool IsInsideDraw() OVERRIDE;
+ virtual void RenewTreePriority() OVERRIDE {}
};
} // namespace cc
« no previous file with comments | « cc/test/fake_layer_tree_host_impl.cc ('k') | cc/test/fake_layer_tree_host_impl_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698