OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // This file contains helper functions used by Chromium OS login. | 5 // This file contains helper functions used by Chromium OS login. |
6 | 6 |
7 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_HELPER_H_ | 7 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_HELPER_H_ |
8 #define CHROME_BROWSER_CHROMEOS_LOGIN_HELPER_H_ | 8 #define CHROME_BROWSER_CHROMEOS_LOGIN_HELPER_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/string16.h" | 12 #include "base/string16.h" |
13 #include "third_party/skia/include/core/SkColor.h" | 13 #include "third_party/skia/include/core/SkColor.h" |
14 #include "ui/views/controls/button/text_button.h" | 14 #include "ui/views/controls/button/text_button.h" |
15 #include "views/view.h" | 15 #include "ui/views/view.h" |
16 | 16 |
17 class GURL; | 17 class GURL; |
18 | 18 |
19 namespace gfx { | 19 namespace gfx { |
20 class Rect; | 20 class Rect; |
21 class Size; | 21 class Size; |
22 } // namespace gfx | 22 } // namespace gfx |
23 | 23 |
24 namespace views { | 24 namespace views { |
25 class Label; | 25 class Label; |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 | 186 |
187 // New pod sizes. | 187 // New pod sizes. |
188 const int kNewUserPodFullWidth = 372; | 188 const int kNewUserPodFullWidth = 372; |
189 const int kNewUserPodFullHeight = 372; | 189 const int kNewUserPodFullHeight = 372; |
190 const int kNewUserPodSmallWidth = 360; | 190 const int kNewUserPodSmallWidth = 360; |
191 const int kNewUserPodSmallHeight = 322; | 191 const int kNewUserPodSmallHeight = 322; |
192 | 192 |
193 } // namespace chromeos | 193 } // namespace chromeos |
194 | 194 |
195 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_HELPER_H_ | 195 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_HELPER_H_ |
OLD | NEW |