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

Unified Diff: cc/output/begin_frame_args.h

Issue 221833009: cc: Move scheduling logic out of OutputSurface (Closed) Base URL: http://git.chromium.org/chromium/src.git@swapAck2Sched11
Patch Set: Remove invalid DCHECK causing flake Created 6 years, 8 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/cc_tests.gyp ('k') | cc/output/output_surface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/begin_frame_args.h
diff --git a/cc/output/begin_frame_args.h b/cc/output/begin_frame_args.h
index 025a4075c25e6b84ab9597dabac7e5c83b34ea1b..e6cce6926db239ba47e1cc7579a6208ee65e7d9e 100644
--- a/cc/output/begin_frame_args.h
+++ b/cc/output/begin_frame_args.h
@@ -49,6 +49,14 @@ struct CC_EXPORT BeginFrameArgs {
base::TimeDelta interval);
};
+class CC_EXPORT BeginFrameSourceClient {
brianderson 2014/04/23 21:10:02 This isn't actually used anymore. Will delete.
+ protected:
+ virtual ~BeginFrameSourceClient() {}
+
+ public:
+ virtual void BeginFrame(const BeginFrameArgs& args) = 0;
+};
+
} // namespace cc
#endif // CC_OUTPUT_BEGIN_FRAME_ARGS_H_
« no previous file with comments | « cc/cc_tests.gyp ('k') | cc/output/output_surface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698