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_GLUE_PLUGINS_PEPPER_PLUGIN_INSTANCE_H_ | 5 #ifndef WEBKIT_GLUE_PLUGINS_PEPPER_PLUGIN_INSTANCE_H_ |
6 #define WEBKIT_GLUE_PLUGINS_PEPPER_PLUGIN_INSTANCE_H_ | 6 #define WEBKIT_GLUE_PLUGINS_PEPPER_PLUGIN_INSTANCE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/ref_counted.h" | 12 #include "base/ref_counted.h" |
13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
14 #include "base/string16.h" | 14 #include "base/string16.h" |
15 #include "gfx/rect.h" | 15 #include "gfx/rect.h" |
16 #include "third_party/ppapi/c/dev/pp_cursor_type_dev.h" | 16 #include "ppapi/c/dev/pp_cursor_type_dev.h" |
17 #include "third_party/ppapi/c/dev/ppp_graphics_3d_dev.h" | 17 #include "ppapi/c/dev/ppp_graphics_3d_dev.h" |
18 #include "third_party/ppapi/c/dev/ppp_printing_dev.h" | 18 #include "ppapi/c/dev/ppp_printing_dev.h" |
19 #include "third_party/ppapi/c/pp_instance.h" | 19 #include "ppapi/c/pp_instance.h" |
20 #include "third_party/ppapi/c/pp_resource.h" | 20 #include "ppapi/c/pp_resource.h" |
21 #include "third_party/skia/include/core/SkBitmap.h" | 21 #include "third_party/skia/include/core/SkBitmap.h" |
22 #include "third_party/WebKit/WebKit/chromium/public/WebCanvas.h" | 22 #include "third_party/WebKit/WebKit/chromium/public/WebCanvas.h" |
23 | 23 |
24 struct PP_Var; | 24 struct PP_Var; |
25 struct PPB_Instance; | 25 struct PPB_Instance; |
26 struct PPB_Find_Dev; | 26 struct PPB_Find_Dev; |
27 struct PPB_Fullscreen_Dev; | 27 struct PPB_Fullscreen_Dev; |
28 struct PPB_Zoom_Dev; | 28 struct PPB_Zoom_Dev; |
29 struct PPP_Find_Dev; | 29 struct PPP_Find_Dev; |
30 struct PPP_Instance; | 30 struct PPP_Instance; |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 | 268 |
269 // Plugin container for fullscreen mode. NULL if not in fullscreen mode. | 269 // Plugin container for fullscreen mode. NULL if not in fullscreen mode. |
270 FullscreenContainer* fullscreen_container_; | 270 FullscreenContainer* fullscreen_container_; |
271 | 271 |
272 DISALLOW_COPY_AND_ASSIGN(PluginInstance); | 272 DISALLOW_COPY_AND_ASSIGN(PluginInstance); |
273 }; | 273 }; |
274 | 274 |
275 } // namespace pepper | 275 } // namespace pepper |
276 | 276 |
277 #endif // WEBKIT_GLUE_PLUGINS_PEPPER_PLUGIN_INSTANCE_H_ | 277 #endif // WEBKIT_GLUE_PLUGINS_PEPPER_PLUGIN_INSTANCE_H_ |
OLD | NEW |