diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-30 03:22:20 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-30 03:22:20 +0000 |
commit | 464883218eccabb97b52f7bcc6a459709b69f87e (patch) | |
tree | 20e62a5781a44d6827019d61d075e264e87b0469 /content/browser/resolve_proxy_msg_helper_unittest.cc | |
parent | 3df72a134583efcc1e86c6abac2103c9800c5c13 (diff) | |
download | chromium_src-464883218eccabb97b52f7bcc6a459709b69f87e.zip chromium_src-464883218eccabb97b52f7bcc6a459709b69f87e.tar.gz chromium_src-464883218eccabb97b52f7bcc6a459709b69f87e.tar.bz2 |
Move remaining files in content\browser to the content namespace.
Review URL: https://codereview.chromium.org/11340029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164828 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/resolve_proxy_msg_helper_unittest.cc')
-rw-r--r-- | content/browser/resolve_proxy_msg_helper_unittest.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/content/browser/resolve_proxy_msg_helper_unittest.cc b/content/browser/resolve_proxy_msg_helper_unittest.cc index 7e8470a..512e611 100644 --- a/content/browser/resolve_proxy_msg_helper_unittest.cc +++ b/content/browser/resolve_proxy_msg_helper_unittest.cc @@ -13,8 +13,7 @@ #include "net/proxy/proxy_service.h" #include "testing/gtest/include/gtest/gtest.h" -using content::BrowserThread; -using content::BrowserThreadImpl; +namespace content { // This ProxyConfigService always returns "http://pac" as the PAC url to use. class MockProxyConfigService : public net::ProxyConfigService { @@ -235,3 +234,5 @@ TEST_F(ResolveProxyMsgHelperTest, CancelPendingRequests) { // It should also be the case that msg1, msg2, msg3 were deleted by the // cancellation. (Else will show up as a leak in Valgrind). } + +} // namespace content |