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

Unified Diff: webkit/plugins/ppapi/ppb_flash_menu_impl.h

Issue 7669055: Remove webkit::ppapi::Resource. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nulls auditeed Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/plugins/ppapi/ppb_flash_impl.cc ('k') | webkit/plugins/ppapi/ppb_flash_menu_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/ppb_flash_menu_impl.h
diff --git a/webkit/plugins/ppapi/ppb_flash_menu_impl.h b/webkit/plugins/ppapi/ppb_flash_menu_impl.h
index 9c6c6fb8fdc55a900458cfac39ca45ef65e05392..fc0b99db8a778deef23e2b916d3a097e0d1ba495 100644
--- a/webkit/plugins/ppapi/ppb_flash_menu_impl.h
+++ b/webkit/plugins/ppapi/ppb_flash_menu_impl.h
@@ -12,21 +12,21 @@
#include "base/memory/ref_counted.h"
#include "ppapi/c/pp_point.h"
#include "ppapi/c/private/ppb_flash_menu.h"
+#include "ppapi/shared_impl/resource.h"
#include "ppapi/thunk/ppb_flash_menu_api.h"
#include "webkit/plugins/ppapi/callbacks.h"
-#include "webkit/plugins/ppapi/resource.h"
struct WebMenuItem;
namespace webkit {
namespace ppapi {
-class PPB_Flash_Menu_Impl : public Resource,
+class PPB_Flash_Menu_Impl : public ::ppapi::Resource,
public ::ppapi::thunk::PPB_Flash_Menu_API {
public:
virtual ~PPB_Flash_Menu_Impl();
- static PP_Resource Create(PluginInstance* instance,
+ static PP_Resource Create(PP_Instance instance,
const PP_Flash_Menu* menu_data);
// Resource.
@@ -44,7 +44,7 @@ class PPB_Flash_Menu_Impl : public Resource,
const MenuData& menu_data() const { return menu_data_; }
private:
- explicit PPB_Flash_Menu_Impl(PluginInstance* instance);
+ explicit PPB_Flash_Menu_Impl(PP_Instance instance);
bool Init(const PP_Flash_Menu* menu_data);
« no previous file with comments | « webkit/plugins/ppapi/ppb_flash_impl.cc ('k') | webkit/plugins/ppapi/ppb_flash_menu_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698