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

Unified Diff: content/ppapi_plugin/ppapi_thread.h

Issue 7655002: Convert the pp::proxy namespace to the ppapi::proxy namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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
Index: content/ppapi_plugin/ppapi_thread.h
diff --git a/content/ppapi_plugin/ppapi_thread.h b/content/ppapi_plugin/ppapi_thread.h
index 3d333e0a53e9dba1ffe1d41ff5730424a70dad9b..cc58362bf38d13412f5bad8fd9aff751f56931bb 100644
--- a/content/ppapi_plugin/ppapi_thread.h
+++ b/content/ppapi_plugin/ppapi_thread.h
@@ -27,7 +27,7 @@ struct ChannelHandle;
}
class PpapiThread : public ChildThread,
- public pp::proxy::PluginDispatcher::PluginDelegate {
+ public ppapi::proxy::PluginDispatcher::PluginDelegate {
public:
explicit PpapiThread(bool is_broker);
virtual ~PpapiThread();
@@ -45,7 +45,7 @@ class PpapiThread : public ChildThread,
const base::Closure& task) OVERRIDE;
virtual bool SendToBrowser(IPC::Message* msg) OVERRIDE;
virtual uint32 Register(
- pp::proxy::PluginDispatcher* plugin_dispatcher) OVERRIDE;
+ ppapi::proxy::PluginDispatcher* plugin_dispatcher) OVERRIDE;
virtual void Unregister(uint32 plugin_dispatcher_id) OVERRIDE;
// Message handlers.
@@ -66,7 +66,7 @@ class PpapiThread : public ChildThread,
base::ScopedNativeLibrary library_;
- pp::proxy::Dispatcher::GetInterfaceFunc get_plugin_interface_;
+ ppapi::proxy::Dispatcher::GetInterfaceFunc get_plugin_interface_;
// Callback to call when a new instance connects to the broker.
// Used only when is_broker_.
@@ -89,7 +89,7 @@ class PpapiThread : public ChildThread,
scoped_ptr<PpapiWebKitThread> webkit_thread_;
// The PluginDispatcher instances contained in the map are not owned by it.
- std::map<uint32, pp::proxy::PluginDispatcher*> plugin_dispatchers_;
+ std::map<uint32, ppapi::proxy::PluginDispatcher*> plugin_dispatchers_;
uint32 next_plugin_dispatcher_id_;
DISALLOW_IMPLICIT_CONSTRUCTORS(PpapiThread);

Powered by Google App Engine
This is Rietveld 408576698