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/system_message_window_win.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/system_message_window_win.h')
-rw-r--r-- | content/browser/system_message_window_win.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/browser/system_message_window_win.h b/content/browser/system_message_window_win.h index d4120c9..b29bad5 100644 --- a/content/browser/system_message_window_win.h +++ b/content/browser/system_message_window_win.h @@ -11,6 +11,8 @@ #include "base/memory/scoped_ptr.h" #include "content/common/content_export.h" +namespace content { + class CONTENT_EXPORT SystemMessageWindowWin { public: SystemMessageWindowWin(); @@ -44,4 +46,6 @@ class CONTENT_EXPORT SystemMessageWindowWin { DISALLOW_COPY_AND_ASSIGN(SystemMessageWindowWin); }; +} // namespace content + #endif // CONTENT_BROWSER_SYSTEM_MESSAGE_WINDOW_WIN_H_ |