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

Side by Side Diff: chrome/browser/chromeos/login/wizard_controller.h

Issue 1428353002: Network Setup from Shark to Remora. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address achuithb@'s comment. Created 5 years, 1 month 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_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 void ShowCurrentScreen() override; 239 void ShowCurrentScreen() override;
240 ErrorScreen* GetErrorScreen() override; 240 ErrorScreen* GetErrorScreen() override;
241 void ShowErrorScreen() override; 241 void ShowErrorScreen() override;
242 void HideErrorScreen(BaseScreen* parent_screen) override; 242 void HideErrorScreen(BaseScreen* parent_screen) override;
243 243
244 // Overridden from EulaScreen::Delegate: 244 // Overridden from EulaScreen::Delegate:
245 void SetUsageStatisticsReporting(bool val) override; 245 void SetUsageStatisticsReporting(bool val) override;
246 bool GetUsageStatisticsReporting() const override; 246 bool GetUsageStatisticsReporting() const override;
247 247
248 // Override from ControllerPairingScreen::Delegate: 248 // Override from ControllerPairingScreen::Delegate:
249 void SetHostNetwork() override;
249 void SetHostConfiguration() override; 250 void SetHostConfiguration() override;
250 251
251 // Override from HostPairingScreen::Delegate: 252 // Override from HostPairingScreen::Delegate:
252 void ConfigureHostRequested(bool accepted_eula, 253 void ConfigureHostRequested(bool accepted_eula,
253 const std::string& lang, 254 const std::string& lang,
254 const std::string& timezone, 255 const std::string& timezone,
255 bool send_reports, 256 bool send_reports,
256 const std::string& keyboard_layout) override; 257 const std::string& keyboard_layout) override;
257 void AddNetworkRequested(const std::string& onc_spec) override; 258 void AddNetworkRequested(const std::string& onc_spec) override;
258 259
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 BaseScreen* hid_screen_; 429 BaseScreen* hid_screen_;
429 430
430 base::WeakPtrFactory<WizardController> weak_factory_; 431 base::WeakPtrFactory<WizardController> weak_factory_;
431 432
432 DISALLOW_COPY_AND_ASSIGN(WizardController); 433 DISALLOW_COPY_AND_ASSIGN(WizardController);
433 }; 434 };
434 435
435 } // namespace chromeos 436 } // namespace chromeos
436 437
437 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ 438 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698