Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(242)

Side by Side Diff: webkit/plugins/npapi/plugin_constants_win.h

Issue 19761007: Move NPAPI implementation out of webkit/plugins/npapi and into content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698