Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Side by Side Diff: webkit/plugins/ppapi/ppapi_plugin_instance.h

Issue 7978009: Split ppapi::PluginList from PepperPluginRegistry so that DRT could load pepper plugins. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/plugins/ppapi/ppapi_plugin_info.cc ('k') | webkit/plugins/ppapi/ppapi_plugin_list.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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>
(...skipping 15 matching lines...) Expand all
26 #include "ppapi/c/ppp_instance.h" 26 #include "ppapi/c/ppp_instance.h"
27 #include "ppapi/shared_impl/function_group_base.h" 27 #include "ppapi/shared_impl/function_group_base.h"
28 #include "ppapi/shared_impl/instance_impl.h" 28 #include "ppapi/shared_impl/instance_impl.h"
29 #include "ppapi/shared_impl/ppp_instance_combined.h" 29 #include "ppapi/shared_impl/ppp_instance_combined.h"
30 #include "ppapi/thunk/ppb_instance_api.h" 30 #include "ppapi/thunk/ppb_instance_api.h"
31 #include "third_party/skia/include/core/SkBitmap.h" 31 #include "third_party/skia/include/core/SkBitmap.h"
32 #include "third_party/skia/include/core/SkRefCnt.h" 32 #include "third_party/skia/include/core/SkRefCnt.h"
33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCanvas.h" 33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCanvas.h"
34 #include "ui/gfx/rect.h" 34 #include "ui/gfx/rect.h"
35 #include "webkit/plugins/ppapi/plugin_delegate.h" 35 #include "webkit/plugins/ppapi/plugin_delegate.h"
36 #include "webkit/plugins/ppapi/plugin_module.h"
36 37
37 struct PP_Var; 38 struct PP_Var;
38 struct PPP_Find_Dev; 39 struct PPP_Find_Dev;
39 struct PPP_InputEvent; 40 struct PPP_InputEvent;
40 struct PPP_Instance_Private; 41 struct PPP_Instance_Private;
41 struct PPP_Messaging; 42 struct PPP_Messaging;
42 struct PPP_MouseLock_Dev; 43 struct PPP_MouseLock_Dev;
43 struct PPP_Pdf; 44 struct PPP_Pdf;
44 struct PPP_PolicyUpdate_Dev; 45 struct PPP_PolicyUpdate_Dev;
45 struct PPP_Selection_Dev; 46 struct PPP_Selection_Dev;
(...skipping 17 matching lines...) Expand all
63 class Resource; 64 class Resource;
64 } 65 }
65 66
66 namespace webkit { 67 namespace webkit {
67 namespace ppapi { 68 namespace ppapi {
68 69
69 class FullscreenContainer; 70 class FullscreenContainer;
70 class MessageChannel; 71 class MessageChannel;
71 class ObjectVar; 72 class ObjectVar;
72 class PluginDelegate; 73 class PluginDelegate;
73 class PluginModule;
74 class PluginObject; 74 class PluginObject;
75 class PPB_Graphics2D_Impl; 75 class PPB_Graphics2D_Impl;
76 class PPB_Graphics3D_Impl; 76 class PPB_Graphics3D_Impl;
77 class PPB_ImageData_Impl; 77 class PPB_ImageData_Impl;
78 class PPB_Surface3D_Impl; 78 class PPB_Surface3D_Impl;
79 class PPB_URLLoader_Impl; 79 class PPB_URLLoader_Impl;
80 class PPB_URLRequestInfo_Impl; 80 class PPB_URLRequestInfo_Impl;
81 81
82 // Represents one time a plugin appears on one web page. 82 // Represents one time a plugin appears on one web page.
83 // 83 //
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 486
487 PP_CompletionCallback lock_mouse_callback_; 487 PP_CompletionCallback lock_mouse_callback_;
488 488
489 DISALLOW_COPY_AND_ASSIGN(PluginInstance); 489 DISALLOW_COPY_AND_ASSIGN(PluginInstance);
490 }; 490 };
491 491
492 } // namespace ppapi 492 } // namespace ppapi
493 } // namespace webkit 493 } // namespace webkit
494 494
495 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ 495 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppapi_plugin_info.cc ('k') | webkit/plugins/ppapi/ppapi_plugin_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698