diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-21 19:52:47 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-21 19:52:47 +0000 |
commit | 91355a856f83888eab29f6a3299aa7c0fe69c3e3 (patch) | |
tree | 99ecc647ffb3988279cc768a5a00b7d5a32125ce /content/ppapi_plugin/plugin_process_dispatcher.h | |
parent | 8463d75aed2831944bfc7471ef239b0c6e31a6ca (diff) | |
download | chromium_src-91355a856f83888eab29f6a3299aa7c0fe69c3e3.zip chromium_src-91355a856f83888eab29f6a3299aa7c0fe69c3e3.tar.gz chromium_src-91355a856f83888eab29f6a3299aa7c0fe69c3e3.tar.bz2 |
Move content's a plugin, ppapi_plugin, utility, and worker subdirectories to the content namespace.
Review URL: https://codereview.chromium.org/11231016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163210 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/ppapi_plugin/plugin_process_dispatcher.h')
-rw-r--r-- | content/ppapi_plugin/plugin_process_dispatcher.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/ppapi_plugin/plugin_process_dispatcher.h b/content/ppapi_plugin/plugin_process_dispatcher.h index 942cd09..1398a06 100644 --- a/content/ppapi_plugin/plugin_process_dispatcher.h +++ b/content/ppapi_plugin/plugin_process_dispatcher.h @@ -8,6 +8,8 @@ #include "base/basictypes.h" #include "ppapi/proxy/plugin_dispatcher.h" +namespace content { + // Wrapper around a PluginDispatcher that provides the necessary integration // for plugin process management. This class is to avoid direct dependencies // from the PPAPI proxy on the Chrome multiprocess infrastructure. @@ -22,4 +24,6 @@ class PluginProcessDispatcher : public ppapi::proxy::PluginDispatcher { DISALLOW_COPY_AND_ASSIGN(PluginProcessDispatcher); }; +} // namespace content + #endif // CONTENT_PPAPI_PLUGIN_PLUGIN_PROCESS_DISPATCHER_H_ |