| 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_LIB_H__ | 5 #ifndef WEBKIT_GLUE_PLUGIN_PLUGIN_LIB_H__ |
| 6 #define WEBKIT_GLUE_PLUGIN_PLUGIN_LIB_H__ | 6 #define WEBKIT_GLUE_PLUGIN_PLUGIN_LIB_H__ |
| 7 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/file_path.h" | 14 #include "base/file_path.h" |
| 15 #include "base/ref_counted.h" | 15 #include "base/ref_counted.h" |
| 16 #include "base/scoped_ptr.h" | |
| 17 #include "webkit/glue/plugins/plugin_list.h" | 16 #include "webkit/glue/plugins/plugin_list.h" |
| 18 #include "webkit/glue/webplugin.h" | 17 #include "webkit/glue/webplugin.h" |
| 19 | 18 |
| 20 struct WebPluginInfo; | 19 struct WebPluginInfo; |
| 21 | 20 |
| 22 namespace NPAPI | 21 namespace NPAPI |
| 23 { | 22 { |
| 24 | 23 |
| 25 class PluginInstance; | 24 class PluginInstance; |
| 26 | 25 |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 | 121 |
| 123 // Function pointers to entry points into the plugin. | 122 // Function pointers to entry points into the plugin. |
| 124 PluginEntryPoints entry_points_; | 123 PluginEntryPoints entry_points_; |
| 125 | 124 |
| 126 DISALLOW_EVIL_CONSTRUCTORS(PluginLib); | 125 DISALLOW_EVIL_CONSTRUCTORS(PluginLib); |
| 127 }; | 126 }; |
| 128 | 127 |
| 129 } // namespace NPAPI | 128 } // namespace NPAPI |
| 130 | 129 |
| 131 #endif // WEBKIT_GLUE_PLUGIN_PLUGIN_LIB_H__ | 130 #endif // WEBKIT_GLUE_PLUGIN_PLUGIN_LIB_H__ |
| OLD | NEW |