| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_NETWORK_SCREEN_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_NETWORK_SCREEN_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_NETWORK_SCREEN_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_NETWORK_SCREEN_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/scoped_ptr.h" |
| 10 #include "base/string16.h" |
| 9 #include "base/task.h" | 11 #include "base/task.h" |
| 10 #include "base/timer.h" | 12 #include "base/timer.h" |
| 11 #include "base/scoped_ptr.h" | |
| 12 #include "base/string16.h" | |
| 13 #include "chrome/browser/chromeos/cros/network_library.h" | 13 #include "chrome/browser/chromeos/cros/network_library.h" |
| 14 #include "chrome/browser/chromeos/login/network_screen_delegate.h" | |
| 15 #include "chrome/browser/chromeos/login/language_switch_menu.h" | 14 #include "chrome/browser/chromeos/login/language_switch_menu.h" |
| 16 #include "chrome/browser/chromeos/login/message_bubble.h" | 15 #include "chrome/browser/chromeos/login/message_bubble.h" |
| 16 #include "chrome/browser/chromeos/login/network_screen_delegate.h" |
| 17 #include "chrome/browser/chromeos/login/view_screen.h" | 17 #include "chrome/browser/chromeos/login/view_screen.h" |
| 18 #include "chrome/browser/chromeos/network_list.h" | 18 #include "chrome/browser/chromeos/network_list.h" |
| 19 #include "chrome/browser/chromeos/options/network_config_view.h" | 19 #include "chrome/browser/chromeos/options/network_config_view.h" |
| 20 | 20 |
| 21 class WizardScreenDelegate; | 21 class WizardScreenDelegate; |
| 22 | 22 |
| 23 namespace chromeos { | 23 namespace chromeos { |
| 24 | 24 |
| 25 class HelpAppLauncher; | 25 class HelpAppLauncher; |
| 26 class NetworkSelectionView; | 26 class NetworkSelectionView; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 | 104 |
| 105 // Help application used for help dialogs. | 105 // Help application used for help dialogs. |
| 106 scoped_ptr<HelpAppLauncher> help_app_; | 106 scoped_ptr<HelpAppLauncher> help_app_; |
| 107 | 107 |
| 108 DISALLOW_COPY_AND_ASSIGN(NetworkScreen); | 108 DISALLOW_COPY_AND_ASSIGN(NetworkScreen); |
| 109 }; | 109 }; |
| 110 | 110 |
| 111 } // namespace chromeos | 111 } // namespace chromeos |
| 112 | 112 |
| 113 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_NETWORK_SCREEN_H_ | 113 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_NETWORK_SCREEN_H_ |
| OLD | NEW |