| OLD | NEW |
| 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 // TODO: Need to deal with NPAPI's NPSavedData. | 5 // TODO: Need to deal with NPAPI's NPSavedData. |
| 6 // I haven't seen plugins use it yet. | 6 // I haven't seen plugins use it yet. |
| 7 | 7 |
| 8 #ifndef WEBKIT_GLUE_PLUGIN_PLUGIN_INSTANCE_H__ | 8 #ifndef WEBKIT_GLUE_PLUGIN_PLUGIN_INSTANCE_H__ |
| 9 #define WEBKIT_GLUE_PLUGIN_PLUGIN_INSTANCE_H__ | 9 #define WEBKIT_GLUE_PLUGIN_PLUGIN_INSTANCE_H__ |
| 10 | 10 |
| 11 #include <map> | 11 #include <map> |
| 12 #include <set> | |
| 13 #include <stack> | 12 #include <stack> |
| 14 #include <string> | 13 #include <string> |
| 15 #include <vector> | 14 #include <vector> |
| 16 | 15 |
| 17 #include "base/basictypes.h" | 16 #include "base/basictypes.h" |
| 18 #include "base/file_path.h" | 17 #include "base/file_path.h" |
| 19 #include "base/ref_counted.h" | 18 #include "base/ref_counted.h" |
| 20 #include "base/scoped_ptr.h" | 19 #include "base/scoped_ptr.h" |
| 21 #include "gfx/native_widget_types.h" | 20 #include "gfx/native_widget_types.h" |
| 22 #include "gfx/point.h" | 21 #include "gfx/point.h" |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 } | 350 } |
| 352 private: | 351 private: |
| 353 scoped_refptr<PluginInstance> instance_; | 352 scoped_refptr<PluginInstance> instance_; |
| 354 DISALLOW_COPY_AND_ASSIGN(ScopedCurrentPluginEvent); | 353 DISALLOW_COPY_AND_ASSIGN(ScopedCurrentPluginEvent); |
| 355 }; | 354 }; |
| 356 #endif | 355 #endif |
| 357 | 356 |
| 358 } // namespace NPAPI | 357 } // namespace NPAPI |
| 359 | 358 |
| 360 #endif // WEBKIT_GLUE_PLUGIN_PLUGIN_INSTANCE_H__ | 359 #endif // WEBKIT_GLUE_PLUGIN_PLUGIN_INSTANCE_H__ |
| OLD | NEW |