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

Unified Diff: ppapi/proxy/ppb_flash_menu_proxy.cc

Issue 8333004: Rename InterfaceID to ApiID and move the file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged Created 9 years, 2 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 | « ppapi/proxy/ppb_flash_file_proxy.cc ('k') | ppapi/proxy/ppb_flash_net_connector_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_flash_menu_proxy.cc
diff --git a/ppapi/proxy/ppb_flash_menu_proxy.cc b/ppapi/proxy/ppb_flash_menu_proxy.cc
index fad568973276514da937c41b2ea1208096de28c0..7ef79c55b03fc446abac3e9379053f7a704d28e6 100644
--- a/ppapi/proxy/ppb_flash_menu_proxy.cc
+++ b/ppapi/proxy/ppb_flash_menu_proxy.cc
@@ -66,7 +66,7 @@ int32_t FlashMenu::Show(const struct PP_Point* location,
PluginDispatcher::GetForResource(this)->Send(
new PpapiHostMsg_PPBFlashMenu_Show(
- INTERFACE_ID_PPB_FLASH_MENU, host_resource(), *location));
+ API_ID_PPB_FLASH_MENU, host_resource(), *location));
return PP_OK_COMPLETIONPENDING;
}
@@ -96,7 +96,7 @@ const InterfaceProxy::Info* PPB_Flash_Menu_Proxy::GetInfo() {
static const Info info = {
ppapi::thunk::GetPPB_Flash_Menu_Thunk(),
PPB_FLASH_MENU_INTERFACE,
- INTERFACE_ID_PPB_FLASH_MENU,
+ API_ID_PPB_FLASH_MENU,
true,
&CreateFlashMenuProxy,
};
@@ -117,7 +117,7 @@ PP_Resource PPB_Flash_Menu_Proxy::CreateProxyResource(
return 0;
dispatcher->Send(new PpapiHostMsg_PPBFlashMenu_Create(
- INTERFACE_ID_PPB_FLASH_MENU, instance_id, serialized_menu, &result));
+ API_ID_PPB_FLASH_MENU, instance_id, serialized_menu, &result));
if (result.is_null())
return 0;
return (new FlashMenu(result))->GetReference();
@@ -182,7 +182,7 @@ void PPB_Flash_Menu_Proxy::SendShowACKToPlugin(
int32_t result,
ShowRequest* request) {
dispatcher()->Send(new PpapiMsg_PPBFlashMenu_ShowACK(
- INTERFACE_ID_PPB_FLASH_MENU,
+ API_ID_PPB_FLASH_MENU,
request->menu,
request->selected_id,
result));
« no previous file with comments | « ppapi/proxy/ppb_flash_file_proxy.cc ('k') | ppapi/proxy/ppb_flash_net_connector_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698