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 WEBKIT_PLUGINS_NPAPI_PLUGIN_CONSTANTS_WIN_H_ | 5 #ifndef WEBKIT_PLUGINS_NPAPI_PLUGIN_CONSTANTS_WIN_H_ |
6 #define WEBKIT_PLUGINS_NPAPI_PLUGIN_CONSTANTS_WIN_H_ | 6 #define WEBKIT_PLUGINS_NPAPI_PLUGIN_CONSTANTS_WIN_H_ |
7 | 7 |
8 #include "base/string16.h" | 8 #include "base/strings/string16.h" |
9 | 9 |
10 #if !defined(OS_WIN) | 10 #if !defined(OS_WIN) |
11 #error "Windows-only header" | 11 #error "Windows-only header" |
12 #endif | 12 #endif |
13 | 13 |
14 namespace webkit { | 14 namespace webkit { |
15 namespace npapi { | 15 namespace npapi { |
16 | 16 |
17 // The window class name for a plugin window. | 17 // The window class name for a plugin window. |
18 extern const char16 kNativeWindowClassName[]; | 18 extern const char16 kNativeWindowClassName[]; |
(...skipping 21 matching lines...) Expand all Loading... |
40 extern const char16 kSilverlightPlugin[]; | 40 extern const char16 kSilverlightPlugin[]; |
41 extern const char16 kJavaPlugin1[]; | 41 extern const char16 kJavaPlugin1[]; |
42 extern const char16 kJavaPlugin2[]; | 42 extern const char16 kJavaPlugin2[]; |
43 | 43 |
44 extern const char kGPUPluginMimeType[]; | 44 extern const char kGPUPluginMimeType[]; |
45 | 45 |
46 } // namespace npapi | 46 } // namespace npapi |
47 } // namespace webkit | 47 } // namespace webkit |
48 | 48 |
49 #endif // WEBKIT_PLUGINS_NPAPI_PLUGIN_PLUGIN_LIST_H_ | 49 #endif // WEBKIT_PLUGINS_NPAPI_PLUGIN_PLUGIN_LIST_H_ |
OLD | NEW |