OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_PLUGIN_PLUGIN_LIST_H__ | 5 #ifndef WEBKIT_GLUE_PLUGIN_PLUGIN_LIST_H__ |
6 #define WEBKIT_GLUE_PLUGIN_PLUGIN_LIST_H__ | 6 #define WEBKIT_GLUE_PLUGIN_PLUGIN_LIST_H__ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/file_path.h" | 13 #include "base/file_path.h" |
14 #include "webkit/glue/webplugin.h" | 14 #include "webkit/glue/webplugininfo.h" |
15 #include "webkit/glue/plugins/nphostapi.h" | 15 #include "webkit/glue/plugins/nphostapi.h" |
16 | 16 |
17 class GURL; | 17 class GURL; |
18 | 18 |
19 namespace base { | 19 namespace base { |
20 | 20 |
21 template <typename T> | 21 template <typename T> |
22 struct DefaultLazyInstanceTraits; | 22 struct DefaultLazyInstanceTraits; |
23 | 23 |
24 } // namespace base | 24 } // namespace base |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 std::vector<PluginVersionInfo> internal_plugins_; | 217 std::vector<PluginVersionInfo> internal_plugins_; |
218 | 218 |
219 friend struct base::DefaultLazyInstanceTraits<PluginList>; | 219 friend struct base::DefaultLazyInstanceTraits<PluginList>; |
220 | 220 |
221 DISALLOW_EVIL_CONSTRUCTORS(PluginList); | 221 DISALLOW_EVIL_CONSTRUCTORS(PluginList); |
222 }; | 222 }; |
223 | 223 |
224 } // namespace NPAPI | 224 } // namespace NPAPI |
225 | 225 |
226 #endif // WEBKIT_GLUE_PLUGIN_PLUGIN_LIST_H__ | 226 #endif // WEBKIT_GLUE_PLUGIN_PLUGIN_LIST_H__ |
OLD | NEW |