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/ozone/platform/cast/overlay_manager_cast.h" | 5 #include "ui/ozone/platform/cast/overlay_manager_cast.h" |
6 | 6 |
7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
8 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
9 #include "ui/gfx/geometry/rect_conversions.h" | 9 #include "ui/gfx/geometry/rect_conversions.h" |
10 #include "ui/ozone/public/overlay_candidates_ozone.h" | 10 #include "ui/ozone/public/overlay_candidates_ozone.h" |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 } // namespace | 73 } // namespace |
74 | 74 |
75 OverlayManagerCast::OverlayManagerCast() { | 75 OverlayManagerCast::OverlayManagerCast() { |
76 } | 76 } |
77 | 77 |
78 OverlayManagerCast::~OverlayManagerCast() { | 78 OverlayManagerCast::~OverlayManagerCast() { |
79 } | 79 } |
80 | 80 |
81 std::unique_ptr<OverlayCandidatesOzone> | 81 std::unique_ptr<OverlayCandidatesOzone> |
82 OverlayManagerCast::CreateOverlayCandidates(gfx::AcceleratedWidget w) { | 82 OverlayManagerCast::CreateOverlayCandidates(gfx::AcceleratedWidget w) { |
83 return base::WrapUnique(new OverlayCandidatesCast()); | 83 return base::MakeUnique<OverlayCandidatesCast>(); |
84 } | 84 } |
85 | 85 |
86 // static | 86 // static |
87 void OverlayManagerCast::SetOverlayCompositedCallback( | 87 void OverlayManagerCast::SetOverlayCompositedCallback( |
88 const OverlayCompositedCallback& cb) { | 88 const OverlayCompositedCallback& cb) { |
89 g_overlay_composited_callback.Get() = cb; | 89 g_overlay_composited_callback.Get() = cb; |
90 } | 90 } |
91 | 91 |
92 } // namespace ui | 92 } // namespace ui |
OLD | NEW |