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

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: Include WebCompositorMutatorClient from WebLayerTreeView to allow unique_ptr usage. Created 4 years, 7 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..e97631580eb4be96ae65b4210799cb22d8cf7af6 100644
--- a/third_party/WebKit/Source/platform/graphics/CompositorMutatorClient.h
+++ b/third_party/WebKit/Source/platform/graphics/CompositorMutatorClient.h
@@ -6,26 +6,36 @@
#define CompositorMutatorClient_h
#include "platform/PlatformExport.h"
+#include "platform/heap/Handle.h"
#include "public/platform/WebCompositorMutatorClient.h"
#include "wtf/OwnPtr.h"
#include "wtf/PassOwnPtr.h"
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 monotonicTime) override;
+ void SetClient(cc::LayerTreeMutatorClient*) override;
base::Closure TakeMutations() override;
+ CompositorMutator* mutator() { return m_mutator.get(); }
+
void setMutationsForTesting(PassOwnPtr<CompositorMutations>);
private:
+ cc::LayerTreeMutatorClient* m_client;
CompositorMutationsTarget* m_mutationsTarget;
+ Persistent<CompositorMutator> m_mutator;
OwnPtr<CompositorMutations> m_mutations;
};

Powered by Google App Engine
This is Rietveld 408576698