diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-25 18:44:52 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-25 18:44:52 +0000 |
commit | 7a91c555f3e057f8be9010a4e5385678ce822c28 (patch) | |
tree | edb8a4384b09b3ce70b6b58a17afe5470eb5e039 /content/browser/child_process_security_policy_impl.h | |
parent | e2e22a7ab44c2f49d856a9f840893c5462f52679 (diff) | |
download | chromium_src-7a91c555f3e057f8be9010a4e5385678ce822c28.zip chromium_src-7a91c555f3e057f8be9010a4e5385678ce822c28.tar.gz chromium_src-7a91c555f3e057f8be9010a4e5385678ce822c28.tar.bz2 |
content/browser: Move more files into the content namespace.
Fixed most of the files found with the following command line:
$ git grep --files-without-match --name-only "namespace content {" -- content/browser/{*.cc,*.h.*.mm}
R=jam@chromium.org
Review URL: https://codereview.chromium.org/11274038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164120 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/child_process_security_policy_impl.h')
-rw-r--r-- | content/browser/child_process_security_policy_impl.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/content/browser/child_process_security_policy_impl.h b/content/browser/child_process_security_policy_impl.h index b6898c4..d4b7287 100644 --- a/content/browser/child_process_security_policy_impl.h +++ b/content/browser/child_process_security_policy_impl.h @@ -5,7 +5,6 @@ #ifndef CONTENT_BROWSER_CHILD_PROCESS_SECURITY_POLICY_IMPL_H_ #define CONTENT_BROWSER_CHILD_PROCESS_SECURITY_POLICY_IMPL_H_ - #include <map> #include <set> #include <string> @@ -19,8 +18,10 @@ class FilePath; class GURL; +namespace content { + class CONTENT_EXPORT ChildProcessSecurityPolicyImpl - : NON_EXPORTED_BASE(public content::ChildProcessSecurityPolicy) { + : NON_EXPORTED_BASE(public ChildProcessSecurityPolicy) { public: // Object can only be created through GetInstance() so the constructor is // private. @@ -207,4 +208,6 @@ class CONTENT_EXPORT ChildProcessSecurityPolicyImpl DISALLOW_COPY_AND_ASSIGN(ChildProcessSecurityPolicyImpl); }; +} // namespace content + #endif // CONTENT_BROWSER_CHILD_PROCESS_SECURITY_POLICY_IMPL_H_ |