OLD | NEW |
1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/scoped_ptr.h" | |
11 #include "chrome/browser/chromeos/login/network_screen_actor.h" | 10 #include "chrome/browser/chromeos/login/network_screen_actor.h" |
12 #include "chrome/browser/ui/webui/chromeos/login/base_screen_handler.h" | 11 #include "chrome/browser/ui/webui/chromeos/login/base_screen_handler.h" |
13 #include "ui/gfx/point.h" | 12 #include "ui/gfx/point.h" |
14 | 13 |
15 namespace base { | 14 namespace base { |
16 class ListValue; | 15 class ListValue; |
17 } | 16 } |
18 | 17 |
19 namespace chromeos { | 18 namespace chromeos { |
20 | 19 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 | 71 |
73 // Position of the network control. | 72 // Position of the network control. |
74 gfx::Point network_control_pos_; | 73 gfx::Point network_control_pos_; |
75 | 74 |
76 DISALLOW_COPY_AND_ASSIGN(NetworkScreenHandler); | 75 DISALLOW_COPY_AND_ASSIGN(NetworkScreenHandler); |
77 }; | 76 }; |
78 | 77 |
79 } // namespace chromeos | 78 } // namespace chromeos |
80 | 79 |
81 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_NETWORK_SCREEN_HANDLER_H_ | 80 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_NETWORK_SCREEN_HANDLER_H_ |
OLD | NEW |