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

Unified Diff: cc/scheduler/scheduler.h

Issue 2337913003: Fork cc::OutputSurface into cc::CompositorFrameSink. (Closed)
Patch Set: cfsfork: android-vulkan Created 4 years, 3 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/compositor_timing_history.cc ('k') | cc/scheduler/scheduler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scheduler/scheduler.h
diff --git a/cc/scheduler/scheduler.h b/cc/scheduler/scheduler.h
index 09bac9a0883627c5e28006e34ca9a3b8a140407c..3d7a3721888aac87939b4df27c69b9aecf1bc6d6 100644
--- a/cc/scheduler/scheduler.h
+++ b/cc/scheduler/scheduler.h
@@ -42,9 +42,9 @@ class SchedulerClient {
virtual DrawResult ScheduledActionDrawAndSwapForced() = 0;
virtual void ScheduledActionCommit() = 0;
virtual void ScheduledActionActivateSyncTree() = 0;
- virtual void ScheduledActionBeginOutputSurfaceCreation() = 0;
+ virtual void ScheduledActionBeginCompositorFrameSinkCreation() = 0;
virtual void ScheduledActionPrepareTiles() = 0;
- virtual void ScheduledActionInvalidateOutputSurface() = 0;
+ virtual void ScheduledActionInvalidateCompositorFrameSink() = 0;
virtual void DidFinishImplFrame() = 0;
virtual void SendBeginMainFrameNotExpectedSoon() = 0;
@@ -68,7 +68,7 @@ class CC_EXPORT Scheduler : public BeginFrameObserverBase {
void OnBeginFrameSourcePausedChanged(bool paused) override;
bool OnBeginFrameDerivedImpl(const BeginFrameArgs& args) override;
- void OnDrawForOutputSurface(bool resourceless_software_draw);
+ void OnDrawForCompositorFrameSink(bool resourceless_software_draw);
const SchedulerSettings& settings() const { return settings_; }
@@ -102,8 +102,8 @@ class CC_EXPORT Scheduler : public BeginFrameObserverBase {
void WillPrepareTiles();
void DidPrepareTiles();
- void DidLoseOutputSurface();
- void DidCreateAndInitializeOutputSurface();
+ void DidLoseCompositorFrameSink();
+ void DidCreateAndInitializeCompositorFrameSink();
// Tests do not want to shut down until all possible BeginMainFrames have
// occured to prevent flakiness.
« no previous file with comments | « cc/scheduler/compositor_timing_history.cc ('k') | cc/scheduler/scheduler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698