OLD | NEW |
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_SCREENS_NETWORK_SCREEN_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_NETWORK_SCREEN_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_NETWORK_SCREEN_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_NETWORK_SCREEN_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
11 #include "base/timer.h" | 11 #include "base/timer/timer.h" |
12 #include "chrome/browser/chromeos/login/language_switch_menu.h" | 12 #include "chrome/browser/chromeos/login/language_switch_menu.h" |
13 #include "chrome/browser/chromeos/login/screens/network_screen_actor.h" | 13 #include "chrome/browser/chromeos/login/screens/network_screen_actor.h" |
14 #include "chrome/browser/chromeos/login/screens/wizard_screen.h" | 14 #include "chrome/browser/chromeos/login/screens/wizard_screen.h" |
15 #include "chrome/browser/chromeos/net/connectivity_state_helper_observer.h" | 15 #include "chrome/browser/chromeos/net/connectivity_state_helper_observer.h" |
16 | 16 |
17 namespace chromeos { | 17 namespace chromeos { |
18 | 18 |
19 class NetworkScreen : public WizardScreen, | 19 class NetworkScreen : public WizardScreen, |
20 public ConnectivityStateHelperObserver, | 20 public ConnectivityStateHelperObserver, |
21 public NetworkScreenActor::Delegate { | 21 public NetworkScreenActor::Delegate { |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 base::OneShotTimer<NetworkScreen> connection_timer_; | 82 base::OneShotTimer<NetworkScreen> connection_timer_; |
83 | 83 |
84 NetworkScreenActor* actor_; | 84 NetworkScreenActor* actor_; |
85 | 85 |
86 DISALLOW_COPY_AND_ASSIGN(NetworkScreen); | 86 DISALLOW_COPY_AND_ASSIGN(NetworkScreen); |
87 }; | 87 }; |
88 | 88 |
89 } // namespace chromeos | 89 } // namespace chromeos |
90 | 90 |
91 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_NETWORK_SCREEN_H_ | 91 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_NETWORK_SCREEN_H_ |
OLD | NEW |