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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.h

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments from Kent; merge. Created 4 years, 6 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 CompositorMutableStateProvider_h 5 #ifndef CompositorMutableStateProvider_h
6 #define CompositorMutableStateProvider_h 6 #define CompositorMutableStateProvider_h
7 7
8 #include "platform/PlatformExport.h" 8 #include "platform/PlatformExport.h"
9 #include "wtf/PassOwnPtr.h"
10
11 #include <cstdint> 9 #include <cstdint>
10 #include <memory>
12 11
13 namespace cc { 12 namespace cc {
14 class LayerTreeImpl; 13 class LayerTreeImpl;
15 } // namespace cc 14 } // namespace cc
16 15
17 namespace blink { 16 namespace blink {
18 17
19 class CompositorMutableState; 18 class CompositorMutableState;
20 struct CompositorMutations; 19 struct CompositorMutations;
21 20
22 // This class is a window onto compositor-owned state. It vends out wrappers 21 // This class is a window onto compositor-owned state. It vends out wrappers
23 // around per-element bits of this state. 22 // around per-element bits of this state.
24 class PLATFORM_EXPORT CompositorMutableStateProvider { 23 class PLATFORM_EXPORT CompositorMutableStateProvider {
25 public: 24 public:
26 CompositorMutableStateProvider(cc::LayerTreeImpl*, CompositorMutations*); 25 CompositorMutableStateProvider(cc::LayerTreeImpl*, CompositorMutations*);
27 ~CompositorMutableStateProvider(); 26 ~CompositorMutableStateProvider();
28 27
29 PassOwnPtr<CompositorMutableState> getMutableStateFor(uint64_t elementId); 28 std::unique_ptr<CompositorMutableState> getMutableStateFor(uint64_t elementI d);
30 private: 29 private:
31 cc::LayerTreeImpl* m_state; 30 cc::LayerTreeImpl* m_state;
32 CompositorMutations* m_mutations; 31 CompositorMutations* m_mutations;
33 }; 32 };
34 33
35 } // namespace blink 34 } // namespace blink
36 35
37 #endif // CompositorMutableStateProvider_h 36 #endif // CompositorMutableStateProvider_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698