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_FRAME_TEST_UTILS_H_ | 5 #ifndef CHROME_FRAME_TEST_UTILS_H_ |
6 #define CHROME_FRAME_TEST_UTILS_H_ | 6 #define CHROME_FRAME_TEST_UTILS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include <atlbase.h> | 10 #include <atlbase.h> |
11 #include <atlcom.h> | 11 #include <atlcom.h> |
12 | 12 |
13 #include "base/string16.h" | 13 #include "base/strings/string16.h" |
14 | 14 |
15 namespace base { | 15 namespace base { |
16 class FilePath; | 16 class FilePath; |
17 } | 17 } |
18 | 18 |
19 extern const wchar_t kChromeFrameDllName[]; | 19 extern const wchar_t kChromeFrameDllName[]; |
20 extern const wchar_t kChromeLauncherExeName[]; | 20 extern const wchar_t kChromeLauncherExeName[]; |
21 | 21 |
22 // Helper class used to register different chrome frame DLLs while running | 22 // Helper class used to register different chrome frame DLLs while running |
23 // tests. The default constructor registers the DLL found in the build path. | 23 // tests. The default constructor registers the DLL found in the build path. |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 } | 125 } |
126 | 126 |
127 T* owner_; | 127 T* owner_; |
128 Method method_; | 128 Method method_; |
129 }; | 129 }; |
130 | 130 |
131 // If the workstation is locked and cannot receive user input. | 131 // If the workstation is locked and cannot receive user input. |
132 bool IsWorkstationLocked(); | 132 bool IsWorkstationLocked(); |
133 | 133 |
134 #endif // CHROME_FRAME_TEST_UTILS_H_ | 134 #endif // CHROME_FRAME_TEST_UTILS_H_ |
OLD | NEW |