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_UI_WEBUI_CHROMEOS_LOGIN_NETWORK_SCREEN_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_NETWORK_SCREEN_HANDLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_NETWORK_SCREEN_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_NETWORK_SCREEN_HANDLER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "chrome/browser/chromeos/base/locale_util.h" | 12 #include "chrome/browser/chromeos/base/locale_util.h" |
13 #include "chrome/browser/chromeos/login/screens/network_view.h" | 13 #include "chrome/browser/chromeos/login/screens/network_view.h" |
14 #include "chrome/browser/ui/webui/chromeos/login/base_screen_handler.h" | 14 #include "chrome/browser/ui/webui/chromeos/login/base_screen_handler.h" |
15 #include "ui/base/ime/chromeos/component_extension_ime_manager.h" | 15 #include "ui/base/ime/chromeos/component_extension_ime_manager.h" |
16 #include "ui/base/ime/chromeos/input_method_manager.h" | 16 #include "ui/base/ime/chromeos/input_method_manager.h" |
17 #include "ui/gfx/geometry/point.h" | 17 #include "ui/gfx/geometry/point.h" |
18 #include "ui/gfx/point.h" | |
19 | 18 |
20 namespace chromeos { | 19 namespace chromeos { |
21 | 20 |
22 class CoreOobeActor; | 21 class CoreOobeActor; |
23 class IdleDetector; | 22 class IdleDetector; |
24 class InputEventsBlocker; | 23 class InputEventsBlocker; |
25 | 24 |
26 // WebUI implementation of NetworkScreenActor. It is used to interact with | 25 // WebUI implementation of NetworkScreenActor. It is used to interact with |
27 // the welcome screen (part of the page) of the OOBE. | 26 // the welcome screen (part of the page) of the OOBE. |
28 class NetworkScreenHandler : public NetworkView, public BaseScreenHandler { | 27 class NetworkScreenHandler : public NetworkView, public BaseScreenHandler { |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 | 60 |
62 // Position of the network control. | 61 // Position of the network control. |
63 gfx::Point network_control_pos_; | 62 gfx::Point network_control_pos_; |
64 | 63 |
65 DISALLOW_COPY_AND_ASSIGN(NetworkScreenHandler); | 64 DISALLOW_COPY_AND_ASSIGN(NetworkScreenHandler); |
66 }; | 65 }; |
67 | 66 |
68 } // namespace chromeos | 67 } // namespace chromeos |
69 | 68 |
70 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_NETWORK_SCREEN_HANDLER_H_ | 69 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_NETWORK_SCREEN_HANDLER_H_ |
OLD | NEW |