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

Unified Diff: ppapi/proxy/ppb_file_system_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.h ('k') | ppapi/proxy/ppb_flash_clipboard_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_file_system_proxy.cc
diff --git a/ppapi/proxy/ppb_file_system_proxy.cc b/ppapi/proxy/ppb_file_system_proxy.cc
index 606f2e04a4b6bc5017dd5f5562d81eb3cc027e43..dea74095b407d314c46881dafebbcd8b9640649c 100644
--- a/ppapi/proxy/ppb_file_system_proxy.cc
+++ b/ppapi/proxy/ppb_file_system_proxy.cc
@@ -98,7 +98,7 @@ int32_t FileSystem::Open(int64_t expected_size,
called_open_ = true;
PluginDispatcher::GetForResource(this)->Send(
new PpapiHostMsg_PPBFileSystem_Open(
- INTERFACE_ID_PPB_FILE_SYSTEM, host_resource(), expected_size));
+ API_ID_PPB_FILE_SYSTEM, host_resource(), expected_size));
return PP_OK_COMPLETIONPENDING;
}
@@ -122,7 +122,7 @@ const InterfaceProxy::Info* PPB_FileSystem_Proxy::GetInfo() {
static const Info info = {
thunk::GetPPB_FileSystem_Thunk(),
PPB_FILESYSTEM_INTERFACE,
- INTERFACE_ID_PPB_FILE_SYSTEM,
+ API_ID_PPB_FILE_SYSTEM,
false,
&CreateFileSystemProxy,
};
@@ -139,7 +139,7 @@ PP_Resource PPB_FileSystem_Proxy::CreateProxyResource(
HostResource result;
dispatcher->Send(new PpapiHostMsg_PPBFileSystem_Create(
- INTERFACE_ID_PPB_FILE_SYSTEM, instance, type, &result));
+ API_ID_PPB_FILE_SYSTEM, instance, type, &result));
if (result.is_null())
return 0;
return (new FileSystem(result, type))->GetReference();
@@ -190,7 +190,7 @@ void PPB_FileSystem_Proxy::OpenCompleteInHost(
int32_t result,
const HostResource& host_resource) {
dispatcher()->Send(new PpapiMsg_PPBFileSystem_OpenComplete(
- INTERFACE_ID_PPB_FILE_SYSTEM, host_resource, result));
+ API_ID_PPB_FILE_SYSTEM, host_resource, result));
}
} // namespace proxy
« no previous file with comments | « ppapi/proxy/ppb_file_system_proxy.h ('k') | ppapi/proxy/ppb_flash_clipboard_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698