OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef WEBKIT_PLUGINS_NPAPI_PLUGIN_CONSTANTS_WIN_H_ | |
6 #define WEBKIT_PLUGINS_NPAPI_PLUGIN_CONSTANTS_WIN_H_ | |
7 | |
8 #include "base/strings/string16.h" | |
9 | |
10 #if !defined(OS_WIN) | |
11 #error "Windows-only header" | |
12 #endif | |
13 | |
14 namespace webkit { | |
15 namespace npapi { | |
16 | |
17 // The window class name for a plugin window. | |
18 extern const char16 kNativeWindowClassName[]; | |
19 | |
20 // The name of the window class name for the wrapper HWND around the actual | |
21 // plugin window that's used when running in multi-process mode. This window | |
22 // is created on the browser UI thread. | |
23 extern const char16 kWrapperNativeWindowClassName[]; | |
24 | |
25 // The name of the custom window message that the browser uses to tell the | |
26 // plugin process to paint a window. | |
27 extern const char16 kPaintMessageName[]; | |
28 | |
29 // The name of the registry key which NPAPI plugins update on installation. | |
30 extern const char16 kRegistryMozillaPlugins[]; | |
31 | |
32 extern const char16 kMozillaActiveXPlugin[]; | |
33 extern const char16 kNewWMPPlugin[]; | |
34 extern const char16 kOldWMPPlugin[]; | |
35 extern const char16 kYahooApplicationStatePlugin[]; | |
36 extern const char16 kWanWangProtocolHandlerPlugin[]; | |
37 extern const char16 kFlashPlugin[]; | |
38 extern const char16 kAcrobatReaderPlugin[]; | |
39 extern const char16 kRealPlayerPlugin[]; | |
40 extern const char16 kSilverlightPlugin[]; | |
41 extern const char16 kJavaPlugin1[]; | |
42 extern const char16 kJavaPlugin2[]; | |
43 | |
44 extern const char kGPUPluginMimeType[]; | |
45 | |
46 } // namespace npapi | |
47 } // namespace webkit | |
48 | |
49 #endif // WEBKIT_PLUGINS_NPAPI_PLUGIN_PLUGIN_LIST_H_ | |
OLD | NEW |