diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-16 20:34:23 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-16 20:34:23 +0000 |
commit | ea1a3f60aa4527939af680eda25c7697901f643c (patch) | |
tree | 6835e11842b4ff04ec277a5f961cbf1853b95bae /content/public/test/test_browser_context.h | |
parent | a628d191e68c0d1d308e1a20a5a4d7bf7884c4c5 (diff) | |
download | chromium_src-ea1a3f60aa4527939af680eda25c7697901f643c.zip chromium_src-ea1a3f60aa4527939af680eda25c7697901f643c.tar.gz chromium_src-ea1a3f60aa4527939af680eda25c7697901f643c.tar.bz2 |
Move scoped_temp_dir from base to base/files
Also add to base namespace.
BUG=
Review URL: https://codereview.chromium.org/11359217
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168281 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/test/test_browser_context.h')
-rw-r--r-- | content/public/test/test_browser_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/public/test/test_browser_context.h b/content/public/test/test_browser_context.h index 9efcf94..5a93376 100644 --- a/content/public/test/test_browser_context.h +++ b/content/public/test/test_browser_context.h @@ -7,10 +7,10 @@ #include "base/compiler_specific.h" #include "base/file_path.h" +#include "base/files/scoped_temp_dir.h" #include "base/gtest_prod_util.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" -#include "base/scoped_temp_dir.h" #include "content/public/browser/browser_context.h" namespace content { @@ -56,7 +56,7 @@ class TestBrowserContext : public BrowserContext { scoped_refptr<net::URLRequestContextGetter> request_context_; scoped_ptr<MockResourceContext> resource_context_; - ScopedTempDir browser_context_dir_; + base::ScopedTempDir browser_context_dir_; scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy_; DISALLOW_COPY_AND_ASSIGN(TestBrowserContext); |