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 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCKER_TESTER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCKER_TESTER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCKER_TESTER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCKER_TESTER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 | 12 |
13 namespace views { | 13 namespace views { |
14 class Button; | |
15 class Textfield; | 14 class Textfield; |
16 class Widget; | 15 class Widget; |
17 } // namespace views | 16 } // namespace views |
18 | 17 |
19 namespace chromeos { | 18 namespace chromeos { |
20 | 19 |
21 class ScreenLocker; | 20 class ScreenLocker; |
22 class ScreenLockerViews; | 21 class ScreenLockerViews; |
23 | 22 |
24 namespace test { | 23 namespace test { |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 views::Textfield* GetPasswordField() const; | 61 views::Textfield* GetPasswordField() const; |
63 | 62 |
64 DISALLOW_COPY_AND_ASSIGN(ScreenLockerTester); | 63 DISALLOW_COPY_AND_ASSIGN(ScreenLockerTester); |
65 }; | 64 }; |
66 | 65 |
67 } // namespace test | 66 } // namespace test |
68 | 67 |
69 } // namespace chromeos | 68 } // namespace chromeos |
70 | 69 |
71 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCKER_TESTER_H_ | 70 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCKER_TESTER_H_ |
OLD | NEW |