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

Unified Diff: third_party/WebKit/Source/platform/graphics/CompositorMutatorClient.h

Issue 1895873006: compositor-worker: Initialize CW machinery plumbing to compositor and fire CW rAF callbacks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unnecessary scope Created 4 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
Index: third_party/WebKit/Source/platform/graphics/CompositorMutatorClient.h
diff --git a/third_party/WebKit/Source/platform/graphics/CompositorMutatorClient.h b/third_party/WebKit/Source/platform/graphics/CompositorMutatorClient.h
index 1c5ee5e761679bb3a008c14deb55e34c8b71fbaa..a07d94c933e0695565740176eb6f7461083e317d 100644
--- a/third_party/WebKit/Source/platform/graphics/CompositorMutatorClient.h
+++ b/third_party/WebKit/Source/platform/graphics/CompositorMutatorClient.h
@@ -12,19 +12,26 @@
namespace blink {
+class CompositorMutator;
struct CompositorMutations;
class CompositorMutationsTarget;
class PLATFORM_EXPORT CompositorMutatorClient : public WebCompositorMutatorClient {
public:
- CompositorMutatorClient(CompositorMutationsTarget*);
+ CompositorMutatorClient(CompositorMutator*, CompositorMutationsTarget*);
virtual ~CompositorMutatorClient();
+ void setNeedsMutate();
+
// cc::LayerTreeMutator
+ bool Mutate(base::TimeTicks timeNow) override;
+ void SetClient(cc::LayerTreeMutatorClient*) override;
base::Closure TakeMutations() override;
void setMutationsForTesting(PassOwnPtr<CompositorMutations>);
private:
+ cc::LayerTreeMutatorClient* m_client;
+ CompositorMutator* m_mutator;
CompositorMutationsTarget* m_mutationsTarget;
OwnPtr<CompositorMutations> m_mutations;
};

Powered by Google App Engine
This is Rietveld 408576698