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

Unified Diff: ppapi/proxy/ppb_flash_clipboard_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_file_system_proxy.cc ('k') | ppapi/proxy/ppb_flash_file_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_flash_clipboard_proxy.cc
diff --git a/ppapi/proxy/ppb_flash_clipboard_proxy.cc b/ppapi/proxy/ppb_flash_clipboard_proxy.cc
index 18918fc1038a07a667b2f0fc347d61132cc9b56e..54772801ade92d8255d92746a65deb349765b698 100644
--- a/ppapi/proxy/ppb_flash_clipboard_proxy.cc
+++ b/ppapi/proxy/ppb_flash_clipboard_proxy.cc
@@ -39,7 +39,7 @@ PP_Bool IsFormatAvailable(PP_Instance instance_id,
bool result = false;
dispatcher->Send(new PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable(
- INTERFACE_ID_PPB_FLASH_CLIPBOARD,
+ API_ID_PPB_FLASH_CLIPBOARD,
instance_id,
static_cast<int>(clipboard_type),
static_cast<int>(format),
@@ -58,7 +58,7 @@ PP_Var ReadPlainText(PP_Instance instance_id,
ReceiveSerializedVarReturnValue result;
dispatcher->Send(new PpapiHostMsg_PPBFlashClipboard_ReadPlainText(
- INTERFACE_ID_PPB_FLASH_CLIPBOARD, instance_id,
+ API_ID_PPB_FLASH_CLIPBOARD, instance_id,
static_cast<int>(clipboard_type), &result));
return result.Return(dispatcher);
}
@@ -74,7 +74,7 @@ int32_t WritePlainText(PP_Instance instance_id,
return PP_ERROR_BADARGUMENT;
dispatcher->Send(new PpapiHostMsg_PPBFlashClipboard_WritePlainText(
- INTERFACE_ID_PPB_FLASH_CLIPBOARD,
+ API_ID_PPB_FLASH_CLIPBOARD,
instance_id,
static_cast<int>(clipboard_type),
SerializedVarSendInput(dispatcher, text)));
@@ -111,7 +111,7 @@ const InterfaceProxy::Info* PPB_Flash_Clipboard_Proxy::GetInfo() {
static const Info info = {
&flash_clipboard_interface,
PPB_FLASH_CLIPBOARD_INTERFACE,
- INTERFACE_ID_PPB_FLASH_CLIPBOARD,
+ API_ID_PPB_FLASH_CLIPBOARD,
false,
&CreateFlashClipboardProxy
};
« no previous file with comments | « ppapi/proxy/ppb_file_system_proxy.cc ('k') | ppapi/proxy/ppb_flash_file_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698