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

Unified Diff: cc/blink/web_compositor_mutable_state_provider_impl.h

Issue 1447893002: compositor-worker: Introduce WebCompositorMutableState (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review feedback. Created 4 years, 11 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: cc/blink/web_compositor_mutable_state_provider_impl.h
diff --git a/cc/blink/web_compositor_mutable_state_provider_impl.h b/cc/blink/web_compositor_mutable_state_provider_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..138103d6df61e8f05863b2bc9d051a4257d9510a
--- /dev/null
+++ b/cc/blink/web_compositor_mutable_state_provider_impl.h
@@ -0,0 +1,44 @@
+// 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 CC_BLINK_WEB_COMPOSITOR_MUTABLE_STATE_PROVIDER_IMPL_H_
+#define CC_BLINK_WEB_COMPOSITOR_MUTABLE_STATE_PROVIDER_IMPL_H_
+
+#include "base/compiler_specific.h"
+#include "base/containers/hash_tables.h"
+#include "cc/animation/layer_tree_mutation.h"
+#include "cc/blink/cc_blink_export.h"
+
+#include "third_party/WebKit/public/platform/WebCompositorMutableStateProvider.h"
+
+namespace cc {
+class LayerTreeImpl;
+} // namespace cc
+
+namespace cc_blink {
+
+class WebCompositorMutableStateProviderImpl
+ : public blink::WebCompositorMutableStateProvider {
+ public:
+ // TODO(vollick): after slimming paint v2, this will need to operate on
+ // property trees, not the layer tree impl.
+ //
+ // The LayerTreeImpl and the LayerTreeMutationMap are both owned by caller.
+ CC_BLINK_EXPORT WebCompositorMutableStateProviderImpl(
+ cc::LayerTreeImpl* state,
+ cc::LayerTreeMutationMap* mutations);
+
+ CC_BLINK_EXPORT ~WebCompositorMutableStateProviderImpl() override;
+
+ CC_BLINK_EXPORT blink::WebPassOwnPtr<blink::WebCompositorMutableState>
+ getMutableStateFor(uint64_t element_id) override WARN_UNUSED_RESULT;
+
+ private:
+ cc::LayerTreeImpl* state_;
+ cc::LayerTreeMutationMap* mutations_;
+};
+
+} // namespace cc_blink
+
+#endif // CC_BLINK_WEB_COMPOSITOR_MUTABLE_STATE_PROVIDER_IMPL_H_
« no previous file with comments | « cc/blink/web_compositor_mutable_state_impl_unittest.cc ('k') | cc/blink/web_compositor_mutable_state_provider_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698