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

Side by Side Diff: webkit/glue/plugins/plugin_list.h

Issue 6162008: plugins: drop PluginVersionInfo for internal plugins (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more comments Created 9 years, 11 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
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_GLUE_PLUGINS_PLUGIN_LIST_H_ 5 #ifndef WEBKIT_GLUE_PLUGINS_PLUGIN_LIST_H_
6 #define WEBKIT_GLUE_PLUGINS_PLUGIN_LIST_H_ 6 #define WEBKIT_GLUE_PLUGINS_PLUGIN_LIST_H_
7 7
8 // This file is here to keep NativeClient compiling. PluginList was moved to 8 // This file is here to keep NativeClient compiling. PluginList was moved to
9 // webkit/plugins/npapi and into the webkit::npapi namespace. Native Client 9 // webkit/plugins/npapi and into the webkit::npapi namespace. Native Client
10 // depends on this old location & namespace, so we provide just enough 10 // depends on this old location & namespace, so we provide just enough
11 // definitions here to keep it compiling until it can be updated to use the 11 // definitions here to keep it compiling until it can be updated to use the
12 // new location & namespace. 12 // new location & namespace.
13 // 13 //
14 // TODO(brettw) remove this flie when NaCl is updated. 14 // TODO(brettw) remove this flie when NaCl is updated.
15 15
16 #include "webkit/plugins/npapi/plugin_list.h" 16 #include "webkit/plugins/npapi/plugin_list.h"
17 17
18 namespace NPAPI { 18 namespace NPAPI {
19 19
20 typedef webkit::npapi::PluginEntryPoints PluginEntryPoints; 20 typedef webkit::npapi::PluginEntryPoints PluginEntryPoints;
21 typedef webkit::npapi::PluginVersionInfo PluginVersionInfo;
22 21
23 class PluginList { 22 class PluginList {
24 public: 23 public:
25 static inline webkit::npapi::PluginList* Singleton() { 24 static inline webkit::npapi::PluginList* Singleton() {
26 return webkit::npapi::PluginList::Singleton(); 25 return webkit::npapi::PluginList::Singleton();
27 } 26 }
28 }; 27 };
29 28
30 } // namespace NPAPI 29 } // namespace NPAPI
31 30
32 #endif // WEBKIT_GLUE_PLUGINS_PLUGIN_LIST_H_ 31 #endif // WEBKIT_GLUE_PLUGINS_PLUGIN_LIST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698