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

Unified Diff: ppapi/proxy/plugin_dispatcher.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/plugin_dispatcher.h ('k') | ppapi/proxy/plugin_dispatcher_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/plugin_dispatcher.cc
diff --git a/ppapi/proxy/plugin_dispatcher.cc b/ppapi/proxy/plugin_dispatcher.cc
index c036c0190c32ef7fe8897cbf7179cdf8b7f8cd8b..dba5253fc10eafe9a5dc5dfc56fa2b4613ecba43 100644
--- a/ppapi/proxy/plugin_dispatcher.cc
+++ b/ppapi/proxy/plugin_dispatcher.cc
@@ -199,7 +199,7 @@ WebKitForwarding* PluginDispatcher::GetWebKitForwarding() {
return plugin_delegate_->GetWebKitForwarding();
}
-FunctionGroupBase* PluginDispatcher::GetFunctionAPI(InterfaceID id) {
+FunctionGroupBase* PluginDispatcher::GetFunctionAPI(ApiID id) {
return GetInterfaceProxy(id);
}
@@ -215,7 +215,7 @@ void PluginDispatcher::ForceFreeAllInstances() {
if (i->second == this) {
// Synthesize an "instance destroyed" message, this will notify the
// plugin and also remove it from our list of tracked plugins.
- PpapiMsg_PPPInstance_DidDestroy msg(INTERFACE_ID_PPP_INSTANCE, i->first);
+ PpapiMsg_PPPInstance_DidDestroy msg(API_ID_PPP_INSTANCE, i->first);
OnMessageReceived(msg);
}
}
« no previous file with comments | « ppapi/proxy/plugin_dispatcher.h ('k') | ppapi/proxy/plugin_dispatcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698