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

Side by Side Diff: ui/ozone/platform/cast/overlay_manager_cast.cc

Issue 2259753003: Re-write many calls to WrapUnique() with MakeUnique() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 #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
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
OLDNEW
« no previous file with comments | « ui/ozone/platform/cast/client_native_pixmap_factory_cast.cc ('k') | ui/ozone/platform/cast/ozone_platform_cast.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698