| 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 "base/ref_counted.h" | |
| 15 #include "webkit/glue/webplugin.h" | 14 #include "webkit/glue/webplugin.h" |
| 16 #include "webkit/glue/plugins/nphostapi.h" | 15 #include "webkit/glue/plugins/nphostapi.h" |
| 17 | 16 |
| 18 class GURL; | 17 class GURL; |
| 19 | 18 |
| 20 namespace base { | 19 namespace base { |
| 21 | 20 |
| 22 template <typename T> | 21 template <typename T> |
| 23 struct DefaultLazyInstanceTraits; | 22 struct DefaultLazyInstanceTraits; |
| 24 | 23 |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 std::vector<PluginVersionInfo> internal_plugins_; | 217 std::vector<PluginVersionInfo> internal_plugins_; |
| 219 | 218 |
| 220 friend struct base::DefaultLazyInstanceTraits<PluginList>; | 219 friend struct base::DefaultLazyInstanceTraits<PluginList>; |
| 221 | 220 |
| 222 DISALLOW_EVIL_CONSTRUCTORS(PluginList); | 221 DISALLOW_EVIL_CONSTRUCTORS(PluginList); |
| 223 }; | 222 }; |
| 224 | 223 |
| 225 } // namespace NPAPI | 224 } // namespace NPAPI |
| 226 | 225 |
| 227 #endif // WEBKIT_GLUE_PLUGIN_PLUGIN_LIST_H__ | 226 #endif // WEBKIT_GLUE_PLUGIN_PLUGIN_LIST_H__ |
| OLD | NEW |