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

Unified Diff: third_party/WebKit/public/platform/WebMutatorClient.h

Issue 1547893003: WIP - compositor worker mega patch. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « third_party/WebKit/public/platform/WebMutator.h ('k') | third_party/WebKit/public/web/WebView.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/WebMutatorClient.h
diff --git a/third_party/WebKit/public/platform/WebMutatorClient.h b/third_party/WebKit/public/platform/WebMutatorClient.h
new file mode 100644
index 0000000000000000000000000000000000000000..01e850eeb96cbf501b6dfca92680d26555adc486
--- /dev/null
+++ b/third_party/WebKit/public/platform/WebMutatorClient.h
@@ -0,0 +1,23 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef WebMutatorClient_h
+#define WebMutatorClient_h
+
+#include "public/platform/WebCommon.h"
+#include "public/platform/WebMutation.h"
+
+namespace blink {
+
+// This class only exists so that blink can instantiate a LayerTreeMutator
+// to pass to the layer tree view.
+class BLINK_EXPORT WebMutatorClient {
+public:
+ virtual ~WebMutatorClient() {}
+
+ virtual void setNeedsMutate() = 0;
+};
+
+} // namespace blink
+#endif // WebMutatorClient_h
« no previous file with comments | « third_party/WebKit/public/platform/WebMutator.h ('k') | third_party/WebKit/public/web/WebView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698