OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CC_BLINK_WEB_COMPOSITOR_MUTABLE_STATE_PROVIDER_IMPL_H_ | 5 #ifndef CC_BLINK_WEB_COMPOSITOR_MUTABLE_STATE_PROVIDER_IMPL_H_ |
6 #define CC_BLINK_WEB_COMPOSITOR_MUTABLE_STATE_PROVIDER_IMPL_H_ | 6 #define CC_BLINK_WEB_COMPOSITOR_MUTABLE_STATE_PROVIDER_IMPL_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/containers/hash_tables.h" | |
10 #include "cc/animation/layer_tree_mutation.h" | 9 #include "cc/animation/layer_tree_mutation.h" |
11 #include "cc/blink/cc_blink_export.h" | 10 #include "cc/blink/cc_blink_export.h" |
12 | 11 |
13 #include "third_party/WebKit/public/platform/WebCompositorMutableStateProvider.h
" | 12 #include "third_party/WebKit/public/platform/WebCompositorMutableStateProvider.h
" |
14 | 13 |
15 namespace cc { | 14 namespace cc { |
16 class LayerTreeImpl; | 15 class LayerTreeImpl; |
17 } // namespace cc | 16 } // namespace cc |
18 | 17 |
19 namespace cc_blink { | 18 namespace cc_blink { |
(...skipping 15 matching lines...) Expand all Loading... |
35 getMutableStateFor(uint64_t element_id) override WARN_UNUSED_RESULT; | 34 getMutableStateFor(uint64_t element_id) override WARN_UNUSED_RESULT; |
36 | 35 |
37 private: | 36 private: |
38 cc::LayerTreeImpl* state_; | 37 cc::LayerTreeImpl* state_; |
39 cc::LayerTreeMutationMap* mutations_; | 38 cc::LayerTreeMutationMap* mutations_; |
40 }; | 39 }; |
41 | 40 |
42 } // namespace cc_blink | 41 } // namespace cc_blink |
43 | 42 |
44 #endif // CC_BLINK_WEB_COMPOSITOR_MUTABLE_STATE_PROVIDER_IMPL_H_ | 43 #endif // CC_BLINK_WEB_COMPOSITOR_MUTABLE_STATE_PROVIDER_IMPL_H_ |
OLD | NEW |