diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-13 03:43:42 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-13 03:43:42 +0000 |
commit | ad432d686c8529838448f6639130f1290db9d5a5 (patch) | |
tree | 8ff3b0499ea3cdff8d0174e24fd99e92d3c428a4 /ppapi | |
parent | 023a056b0a5f0f82a720f3c06b7759592c7dcecf (diff) | |
download | chromium_src-ad432d686c8529838448f6639130f1290db9d5a5.zip chromium_src-ad432d686c8529838448f6639130f1290db9d5a5.tar.gz chromium_src-ad432d686c8529838448f6639130f1290db9d5a5.tar.bz2 |
Rename more interface -> interface name to fix the Windows build.
TEST=none
BUG=none
TBR=noelallen
Review URL: http://codereview.chromium.org/7850029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100853 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/proxy/plugin_dispatcher.cc | 4 | ||||
-rw-r--r-- | ppapi/proxy/plugin_dispatcher.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/proxy/plugin_dispatcher.cc b/ppapi/proxy/plugin_dispatcher.cc index 12d2e75..7afd3d6 100644 --- a/ppapi/proxy/plugin_dispatcher.cc +++ b/ppapi/proxy/plugin_dispatcher.cc @@ -79,8 +79,8 @@ PluginDispatcher* PluginDispatcher::GetForResource(const Resource* resource) { } // static -const void* PluginDispatcher::GetBrowserInterface(const char* interface) { - return InterfaceList::GetInstance()->GetInterfaceForPPB(interface); +const void* PluginDispatcher::GetBrowserInterface(const char* interface_name) { + return InterfaceList::GetInstance()->GetInterfaceForPPB(interface_name); } const void* PluginDispatcher::GetPluginInterface( diff --git a/ppapi/proxy/plugin_dispatcher.h b/ppapi/proxy/plugin_dispatcher.h index 9604fe9..1a2f586 100644 --- a/ppapi/proxy/plugin_dispatcher.h +++ b/ppapi/proxy/plugin_dispatcher.h @@ -90,7 +90,7 @@ class PPAPI_PROXY_EXPORT PluginDispatcher : public Dispatcher { // Implements the GetInterface function for the plugin to call to retrieve // a browser interface. - static const void* GetBrowserInterface(const char* interface); + static const void* GetBrowserInterface(const char* interface_name); const void* GetPluginInterface(const std::string& interface_name); |