OLD | NEW |
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 UI_AURA_WINDOW_PORT_LOCAL_H_ | 5 #ifndef UI_AURA_LOCAL_WINDOW_PORT_LOCAL_H_ |
6 #define UI_AURA_WINDOW_PORT_LOCAL_H_ | 6 #define UI_AURA_LOCAL_WINDOW_PORT_LOCAL_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/weak_ptr.h" |
| 10 #include "cc/surfaces/frame_sink_id.h" |
9 #include "ui/aura/window_port.h" | 11 #include "ui/aura/window_port.h" |
10 #include "ui/base/property_data.h" | 12 #include "ui/base/property_data.h" |
11 | 13 |
| 14 namespace gfx { |
| 15 class Size; |
| 16 } |
| 17 |
12 namespace aura { | 18 namespace aura { |
13 | 19 |
14 class Window; | 20 class Window; |
15 | 21 |
16 // WindowPort implementation for classic aura, e.g. not mus. | 22 // WindowPort implementation for classic aura, e.g. not mus. |
17 class AURA_EXPORT WindowPortLocal : public WindowPort { | 23 class AURA_EXPORT WindowPortLocal : public WindowPort { |
18 public: | 24 public: |
19 explicit WindowPortLocal(Window* window); | 25 explicit WindowPortLocal(Window* window); |
20 ~WindowPortLocal() override; | 26 ~WindowPortLocal() override; |
21 | 27 |
22 // WindowPort: | 28 // WindowPort: |
23 void OnPreInit(Window* window) override; | 29 void OnPreInit(Window* window) override; |
24 void OnDeviceScaleFactorChanged(float device_scale_factor) override; | 30 void OnDeviceScaleFactorChanged(float device_scale_factor) override; |
25 void OnWillAddChild(Window* child) override; | 31 void OnWillAddChild(Window* child) override; |
26 void OnWillRemoveChild(Window* child) override; | 32 void OnWillRemoveChild(Window* child) override; |
27 void OnWillMoveChild(size_t current_index, size_t dest_index) override; | 33 void OnWillMoveChild(size_t current_index, size_t dest_index) override; |
28 void OnVisibilityChanged(bool visible) override; | 34 void OnVisibilityChanged(bool visible) override; |
29 void OnDidChangeBounds(const gfx::Rect& old_bounds, | 35 void OnDidChangeBounds(const gfx::Rect& old_bounds, |
30 const gfx::Rect& new_bounds) override; | 36 const gfx::Rect& new_bounds) override; |
31 std::unique_ptr<ui::PropertyData> OnWillChangeProperty( | 37 std::unique_ptr<ui::PropertyData> OnWillChangeProperty( |
32 const void* key) override; | 38 const void* key) override; |
33 void OnPropertyChanged(const void* key, | 39 void OnPropertyChanged(const void* key, |
34 int64_t old_value, | 40 int64_t old_value, |
35 std::unique_ptr<ui::PropertyData> data) override; | 41 std::unique_ptr<ui::PropertyData> data) override; |
| 42 std::unique_ptr<cc::CompositorFrameSink> CreateCompositorFrameSink() override; |
| 43 cc::SurfaceId GetSurfaceId() const override; |
| 44 void OnWindowAddedToRootWindow() override; |
| 45 void OnWillRemoveWindowFromRootWindow() override; |
36 | 46 |
37 private: | 47 private: |
38 Window* window_; | 48 void OnSurfaceChanged(const cc::SurfaceId& surface_id, |
| 49 const gfx::Size& surface_size); |
| 50 |
| 51 Window* const window_; |
| 52 cc::FrameSinkId frame_sink_id_; |
| 53 cc::LocalSurfaceId local_surface_id_; |
| 54 |
| 55 base::WeakPtrFactory<WindowPortLocal> weak_factory_; |
39 | 56 |
40 DISALLOW_COPY_AND_ASSIGN(WindowPortLocal); | 57 DISALLOW_COPY_AND_ASSIGN(WindowPortLocal); |
41 }; | 58 }; |
42 | 59 |
43 } // namespace aura | 60 } // namespace aura |
44 | 61 |
45 #endif // UI_AURA_WINDOW_PORT_LOCAL_H_ | 62 #endif // UI_AURA_LOCAL_WINDOW_PORT_LOCAL_H_ |
OLD | NEW |