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

Unified Diff: cc/scheduler/begin_frame_source.h

Issue 1057283003: Remove parts of //cc we aren't using (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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/resources/zero_copy_tile_task_worker_pool.cc ('k') | cc/scheduler/delay_based_time_source.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scheduler/begin_frame_source.h
diff --git a/cc/scheduler/begin_frame_source.h b/cc/scheduler/begin_frame_source.h
index d845dacd8e417505e27b3663246ae38c53234285..d15139d76f51325c4b989eaf4679e960c75038a0 100644
--- a/cc/scheduler/begin_frame_source.h
+++ b/cc/scheduler/begin_frame_source.h
@@ -18,7 +18,7 @@ namespace cc {
// (Pure) Interface for observing BeginFrame messages from BeginFrameSource
// objects.
-class CC_EXPORT BeginFrameObserver {
+class BeginFrameObserver {
public:
virtual ~BeginFrameObserver() {}
@@ -62,7 +62,7 @@ class CC_EXPORT BeginFrameObserver {
// - Recommended (but not required) to call
// BeginFrameObserverMixIn::OnValueInto in their overridden OnValueInto
// function.
-class CC_EXPORT BeginFrameObserverMixIn : public BeginFrameObserver {
+class BeginFrameObserverMixIn : public BeginFrameObserver {
public:
BeginFrameObserverMixIn();
@@ -95,7 +95,7 @@ class CC_EXPORT BeginFrameObserverMixIn : public BeginFrameObserver {
// plain made up (when no vsync signal is available or vsync throttling is
// turned off). See the BeginFrameObserver for information about the guarantees
// all BeginFrameSources *must* provide.
-class CC_EXPORT BeginFrameSource {
+class BeginFrameSource {
public:
virtual ~BeginFrameSource() {}
@@ -132,7 +132,7 @@ class CC_EXPORT BeginFrameSource {
// - Use the CallOnBeginFrame method to call to the observer(s).
// - Recommended (but not required) to call BeginFrameSourceMixIn::AsValueInto
// in their own AsValueInto implementation.
-class CC_EXPORT BeginFrameSourceMixIn : public BeginFrameSource {
+class BeginFrameSourceMixIn : public BeginFrameSource {
public:
~BeginFrameSourceMixIn() override {}
@@ -168,7 +168,7 @@ class CC_EXPORT BeginFrameSourceMixIn : public BeginFrameSource {
// A frame source which calls BeginFrame (at the next possible time) as soon as
// remaining frames reaches zero.
-class CC_EXPORT BackToBackBeginFrameSource : public BeginFrameSourceMixIn {
+class BackToBackBeginFrameSource : public BeginFrameSourceMixIn {
public:
static scoped_ptr<BackToBackBeginFrameSource> Create(
base::SingleThreadTaskRunner* task_runner);
@@ -200,9 +200,9 @@ class CC_EXPORT BackToBackBeginFrameSource : public BeginFrameSourceMixIn {
// A frame source which is locked to an external parameters provides from a
// vsync source and generates BeginFrameArgs for it.
-class CC_EXPORT SyntheticBeginFrameSource : public BeginFrameSourceMixIn,
- public VSyncParameterObserver,
- public TimeSourceClient {
+class SyntheticBeginFrameSource : public BeginFrameSourceMixIn,
+ public VSyncParameterObserver,
+ public TimeSourceClient {
public:
static scoped_ptr<SyntheticBeginFrameSource> Create(
base::SingleThreadTaskRunner* task_runner,
@@ -236,8 +236,8 @@ class CC_EXPORT SyntheticBeginFrameSource : public BeginFrameSourceMixIn,
// A "virtual" frame source which lets you switch between multiple other frame
// sources while making sure the BeginFrameArgs stays increasing (possibly
// enforcing minimum boundry between BeginFrameArgs messages).
-class CC_EXPORT BeginFrameSourceMultiplexer : public BeginFrameSourceMixIn,
- public BeginFrameObserver {
+class BeginFrameSourceMultiplexer : public BeginFrameSourceMixIn,
+ public BeginFrameObserver {
public:
static scoped_ptr<BeginFrameSourceMultiplexer> Create();
~BeginFrameSourceMultiplexer() override;
« no previous file with comments | « cc/resources/zero_copy_tile_task_worker_pool.cc ('k') | cc/scheduler/delay_based_time_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698