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

Side by Side Diff: chrome/browser/ui/webui/chromeos/login/core_oobe_handler.h

Issue 1865213004: Convert //chrome/browser/ui 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_CORE_OOBE_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_CORE_OOBE_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_CORE_OOBE_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_CORE_OOBE_HANDLER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 bool show_oobe_ui_; 141 bool show_oobe_ui_;
142 142
143 // Updates when version info is changed. 143 // Updates when version info is changed.
144 VersionInfoUpdater version_info_updater_; 144 VersionInfoUpdater version_info_updater_;
145 145
146 // Help application used for help dialogs. 146 // Help application used for help dialogs.
147 scoped_refptr<HelpAppLauncher> help_app_; 147 scoped_refptr<HelpAppLauncher> help_app_;
148 148
149 Delegate* delegate_; 149 Delegate* delegate_;
150 150
151 scoped_ptr<AccessibilityStatusSubscription> accessibility_subscription_; 151 std::unique_ptr<AccessibilityStatusSubscription> accessibility_subscription_;
152 152
153 DemoModeDetector demo_mode_detector_; 153 DemoModeDetector demo_mode_detector_;
154 154
155 DISALLOW_COPY_AND_ASSIGN(CoreOobeHandler); 155 DISALLOW_COPY_AND_ASSIGN(CoreOobeHandler);
156 }; 156 };
157 157
158 } // namespace chromeos 158 } // namespace chromeos
159 159
160 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_CORE_OOBE_HANDLER_H_ 160 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_CORE_OOBE_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698