| 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 #ifndef WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
| 6 #define WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 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/ref_counted.h" | 14 #include "base/ref_counted.h" |
| 15 #include "base/scoped_ptr.h" | 15 #include "base/scoped_ptr.h" |
| 16 #include "base/string16.h" | 16 #include "base/string16.h" |
| 17 #include "gfx/rect.h" | |
| 18 #include "ppapi/c/dev/pp_cursor_type_dev.h" | 17 #include "ppapi/c/dev/pp_cursor_type_dev.h" |
| 19 #include "ppapi/c/dev/ppp_graphics_3d_dev.h" | 18 #include "ppapi/c/dev/ppp_graphics_3d_dev.h" |
| 20 #include "ppapi/c/dev/ppp_printing_dev.h" | 19 #include "ppapi/c/dev/ppp_printing_dev.h" |
| 21 #include "ppapi/c/pp_instance.h" | 20 #include "ppapi/c/pp_instance.h" |
| 22 #include "ppapi/c/pp_resource.h" | 21 #include "ppapi/c/pp_resource.h" |
| 23 #include "third_party/skia/include/core/SkBitmap.h" | 22 #include "third_party/skia/include/core/SkBitmap.h" |
| 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCanvas.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCanvas.h" |
| 24 #include "ui/gfx/rect.h" |
| 25 #include "webkit/plugins/ppapi/plugin_delegate.h" | 25 #include "webkit/plugins/ppapi/plugin_delegate.h" |
| 26 | 26 |
| 27 typedef struct NPObject NPObject; | 27 typedef struct NPObject NPObject; |
| 28 struct PP_Var; | 28 struct PP_Var; |
| 29 struct PPB_Instance; | 29 struct PPB_Instance; |
| 30 struct PPB_Find_Dev; | 30 struct PPB_Find_Dev; |
| 31 struct PPB_Fullscreen_Dev; | 31 struct PPB_Fullscreen_Dev; |
| 32 struct PPB_Zoom_Dev; | 32 struct PPB_Zoom_Dev; |
| 33 struct PPP_Find_Dev; | 33 struct PPP_Find_Dev; |
| 34 struct PPP_Instance; | 34 struct PPP_Instance; |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 typedef std::map<NPObject*, ObjectVar*> NPObjectToObjectVarMap; | 336 typedef std::map<NPObject*, ObjectVar*> NPObjectToObjectVarMap; |
| 337 NPObjectToObjectVarMap np_object_to_object_var_; | 337 NPObjectToObjectVarMap np_object_to_object_var_; |
| 338 | 338 |
| 339 DISALLOW_COPY_AND_ASSIGN(PluginInstance); | 339 DISALLOW_COPY_AND_ASSIGN(PluginInstance); |
| 340 }; | 340 }; |
| 341 | 341 |
| 342 } // namespace ppapi | 342 } // namespace ppapi |
| 343 } // namespace webkit | 343 } // namespace webkit |
| 344 | 344 |
| 345 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 345 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
| OLD | NEW |