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

Side by Side Diff: cc/blink/web_compositor_mutable_state_provider_impl.h

Issue 1587283002: Switch cc to std::unordered_*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@unordered-map
Patch Set: 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 unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698