| 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 #include "ui/views/mus/surface_context_factory.h" | 5 #include "ui/views/mus/surface_context_factory.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "cc/output/output_surface.h" | 8 #include "cc/output/output_surface.h" |
| 9 #include "cc/resources/shared_bitmap_manager.h" | 9 #include "cc/resources/shared_bitmap_manager.h" |
| 10 #include "cc/surfaces/surface_id_allocator.h" | 10 #include "cc/surfaces/surface_id_allocator.h" |
| 11 #include "components/mus/public/cpp/window.h" | |
| 12 #include "services/shell/public/interfaces/connector.mojom.h" | 11 #include "services/shell/public/interfaces/connector.mojom.h" |
| 12 #include "services/ui/public/cpp/window.h" |
| 13 #include "ui/compositor/reflector.h" | 13 #include "ui/compositor/reflector.h" |
| 14 #include "ui/gl/gl_bindings.h" | 14 #include "ui/gl/gl_bindings.h" |
| 15 | 15 |
| 16 namespace views { | 16 namespace views { |
| 17 namespace { | 17 namespace { |
| 18 | 18 |
| 19 class FakeReflector : public ui::Reflector { | 19 class FakeReflector : public ui::Reflector { |
| 20 public: | 20 public: |
| 21 FakeReflector() {} | 21 FakeReflector() {} |
| 22 ~FakeReflector() override {} | 22 ~FakeReflector() override {} |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 // NOTIMPLEMENTED(); | 100 // NOTIMPLEMENTED(); |
| 101 return nullptr; | 101 return nullptr; |
| 102 } | 102 } |
| 103 | 103 |
| 104 void SurfaceContextFactory::ResizeDisplay(ui::Compositor* compositor, | 104 void SurfaceContextFactory::ResizeDisplay(ui::Compositor* compositor, |
| 105 const gfx::Size& size) { | 105 const gfx::Size& size) { |
| 106 // NOTIMPLEMENTED(); | 106 // NOTIMPLEMENTED(); |
| 107 } | 107 } |
| 108 | 108 |
| 109 } // namespace views | 109 } // namespace views |
| OLD | NEW |