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

Side by Side Diff: chrome/browser/chromeos/login/screens/host_pairing_screen.h

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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "chrome/browser/chromeos/login/enrollment/enterprise_enrollment_helper. h" 9 #include "chrome/browser/chromeos/login/enrollment/enterprise_enrollment_helper. h"
10 #include "chrome/browser/chromeos/login/screens/base_screen.h" 10 #include "chrome/browser/chromeos/login/screens/base_screen.h"
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 void OnAuthCleared(); 79 void OnAuthCleared();
80 void OnAnyEnrollmentError(); 80 void OnAnyEnrollmentError();
81 81
82 Delegate* delegate_; 82 Delegate* delegate_;
83 83
84 HostPairingScreenActor* actor_; 84 HostPairingScreenActor* actor_;
85 85
86 // Controller performing pairing. Owned by the wizard controller. 86 // Controller performing pairing. Owned by the wizard controller.
87 pairing_chromeos::HostPairingController* remora_controller_; 87 pairing_chromeos::HostPairingController* remora_controller_;
88 88
89 scoped_ptr<EnterpriseEnrollmentHelper> enrollment_helper_; 89 std::unique_ptr<EnterpriseEnrollmentHelper> enrollment_helper_;
90 90
91 // Current stage of pairing process. 91 // Current stage of pairing process.
92 Stage current_stage_; 92 Stage current_stage_;
93 93
94 base::WeakPtrFactory<HostPairingScreen> weak_ptr_factory_; 94 base::WeakPtrFactory<HostPairingScreen> weak_ptr_factory_;
95 95
96 DISALLOW_COPY_AND_ASSIGN(HostPairingScreen); 96 DISALLOW_COPY_AND_ASSIGN(HostPairingScreen);
97 }; 97 };
98 98
99 } // namespace chromeos 99 } // namespace chromeos
100 100
101 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_ 101 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/screens/hid_detection_screen.cc ('k') | chrome/browser/chromeos/login/screens/network_screen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698