diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-24 00:26:19 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-24 00:26:19 +0000 |
commit | 130757671de6d0dc4b54dd3ef11c1b9eb5f039cc (patch) | |
tree | 0c92593a755e31425f69d8c3c345fff10287c4ce /content/common/npobject_proxy.h | |
parent | 375abf5c85ab185e3d659cde1e585aff2f8e6b3a (diff) | |
download | chromium_src-130757671de6d0dc4b54dd3ef11c1b9eb5f039cc.zip chromium_src-130757671de6d0dc4b54dd3ef11c1b9eb5f039cc.tar.gz chromium_src-130757671de6d0dc4b54dd3ef11c1b9eb5f039cc.tar.bz2 |
Move the remaning files in content\common to the content namespace.
Review URL: https://codereview.chromium.org/11235068
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163732 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/npobject_proxy.h')
-rw-r--r-- | content/common/npobject_proxy.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/content/common/npobject_proxy.h b/content/common/npobject_proxy.h index d4d43a4e..df90ad8 100644 --- a/content/common/npobject_proxy.h +++ b/content/common/npobject_proxy.h @@ -16,9 +16,11 @@ #include "third_party/npapi/bindings/npruntime.h" #include "ui/gfx/native_widget_types.h" -class NPChannelBase; struct NPObject; +namespace content { +class NPChannelBase; + // When running a plugin in a different process from the renderer, we need to // proxy calls to NPObjects across process boundaries. This happens both ways, // as a plugin can get an NPObject for the window, and a page can get an @@ -120,4 +122,6 @@ class NPObjectProxy : public IPC::Listener, GURL page_url_; }; +} // namespace content + #endif // CONTENT_COMMON_NPOBJECT_PROXY_H_ |