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

Unified Diff: cc/scheduler/vsync_time_source.cc

Issue 13206004: cc: Fix build issues for adding ‘chromium_code’: 1 to cc.gyp and cc_tests.gyp (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
« no previous file with comments | « cc/scheduler/texture_uploader_unittest.cc ('k') | cc/trees/layer_sorter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scheduler/vsync_time_source.cc
diff --git a/cc/scheduler/vsync_time_source.cc b/cc/scheduler/vsync_time_source.cc
index 14834785020246ae3bc68a031375875a400496e1..75314fbeff76e7a9477239d69d7292ab6c491f4e 100644
--- a/cc/scheduler/vsync_time_source.cc
+++ b/cc/scheduler/vsync_time_source.cc
@@ -12,10 +12,10 @@ scoped_refptr<VSyncTimeSource> VSyncTimeSource::Create(
}
VSyncTimeSource::VSyncTimeSource(VSyncProvider* vsync_provider)
- : vsync_provider_(vsync_provider)
- , client_(NULL)
- , active_(false)
- , notification_requested_(false) {}
+ : active_(false),
+ notification_requested_(false),
+ vsync_provider_(vsync_provider),
+ client_(NULL) {}
VSyncTimeSource::~VSyncTimeSource() {}
« no previous file with comments | « cc/scheduler/texture_uploader_unittest.cc ('k') | cc/trees/layer_sorter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698