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

Side by Side Diff: chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.cc

Issue 1870793002: Convert //chrome/browser/chromeos from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.h" 5 #include "chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.h"
6 6
7 #include "ash/shell.h" 7 #include "ash/shell.h"
8 #include "ash/system/tray/system_tray_notifier.h" 8 #include "ash/system/tray/system_tray_notifier.h"
9 9
10 namespace chromeos { 10 namespace chromeos {
(...skipping 12 matching lines...) Expand all
23 gfx::NativeViewId ScreenCaptureNotificationUIChromeOS::OnStarted( 23 gfx::NativeViewId ScreenCaptureNotificationUIChromeOS::OnStarted(
24 const base::Closure& stop_callback) { 24 const base::Closure& stop_callback) {
25 ash::Shell::GetInstance()->system_tray_notifier()->NotifyScreenCaptureStart( 25 ash::Shell::GetInstance()->system_tray_notifier()->NotifyScreenCaptureStart(
26 stop_callback, text_); 26 stop_callback, text_);
27 return 0; 27 return 0;
28 } 28 }
29 29
30 } // namespace chromeos 30 } // namespace chromeos
31 31
32 // static 32 // static
33 scoped_ptr<ScreenCaptureNotificationUI> ScreenCaptureNotificationUI::Create( 33 std::unique_ptr<ScreenCaptureNotificationUI>
34 const base::string16& text) { 34 ScreenCaptureNotificationUI::Create(const base::string16& text) {
35 return scoped_ptr<ScreenCaptureNotificationUI>( 35 return std::unique_ptr<ScreenCaptureNotificationUI>(
36 new chromeos::ScreenCaptureNotificationUIChromeOS(text)); 36 new chromeos::ScreenCaptureNotificationUIChromeOS(text));
37 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698