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

Unified Diff: cc/frame_rate_controller.cc

Issue 12774006: cc: Chromify Layer and LayerImpl classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: cc/frame_rate_controller.cc
diff --git a/cc/frame_rate_controller.cc b/cc/frame_rate_controller.cc
index 60fbde788f2f668111e154874c6a54a671e94134..2f19c253ee8903a43541208548d7f885e8580199 100644
--- a/cc/frame_rate_controller.cc
+++ b/cc/frame_rate_controller.cc
@@ -14,7 +14,7 @@ namespace cc {
class FrameRateControllerTimeSourceAdapter : public TimeSourceClient {
public:
- static scoped_ptr<FrameRateControllerTimeSourceAdapter> create(FrameRateController* frameRateController) {
+ static scoped_ptr<FrameRateControllerTimeSourceAdapter> Create(FrameRateController* frameRateController) {
return make_scoped_ptr(new FrameRateControllerTimeSourceAdapter(frameRateController));
}
virtual ~FrameRateControllerTimeSourceAdapter() {}
@@ -41,7 +41,7 @@ FrameRateController::FrameRateController(scoped_refptr<TimeSource> timer)
, m_thread(0)
, m_weakFactory(ALLOW_THIS_IN_INITIALIZER_LIST(this))
{
- m_timeSourceClientAdapter = FrameRateControllerTimeSourceAdapter::create(this);
+ m_timeSourceClientAdapter = FrameRateControllerTimeSourceAdapter::Create(this);
m_timeSource->setClient(m_timeSourceClientAdapter.get());
}

Powered by Google App Engine
This is Rietveld 408576698