diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 19:20:34 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 19:20:34 +0000 |
commit | 2dec8ec385e65c80571c5723dc572264a934b7c9 (patch) | |
tree | f30b887d1fa77930cc7b9bbc1a0c6a13b7437255 /content/browser/gpu/gpu_memory_test.cc | |
parent | 60e28106a326d40d9ba117d18be0abcd954c8832 (diff) | |
download | chromium_src-2dec8ec385e65c80571c5723dc572264a934b7c9.zip chromium_src-2dec8ec385e65c80571c5723dc572264a934b7c9.tar.gz chromium_src-2dec8ec385e65c80571c5723dc572264a934b7c9.tar.bz2 |
Use base namespace for FilePath in content/browser
Review URL: https://codereview.chromium.org/12213066
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181349 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/gpu/gpu_memory_test.cc')
-rw-r--r-- | content/browser/gpu/gpu_memory_test.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/gpu/gpu_memory_test.cc b/content/browser/gpu/gpu_memory_test.cc index fc62846..00f7331 100644 --- a/content/browser/gpu/gpu_memory_test.cc +++ b/content/browser/gpu/gpu_memory_test.cc @@ -74,7 +74,7 @@ class GpuMemoryTest : public content::ContentBrowserTest { } virtual void SetUpInProcessBrowserTestFixture() { - FilePath test_dir; + base::FilePath test_dir; ASSERT_TRUE(PathService::Get(content::DIR_TEST_DATA, &test_dir)); gpu_test_dir_ = test_dir.AppendASCII("gpu"); } @@ -105,7 +105,7 @@ class GpuMemoryTest : public content::ContentBrowserTest { void LoadPage(content::Shell* tab_to_load, PageType page_type, size_t mb_to_use) { - FilePath url; + base::FilePath url; switch (page_type) { case PAGE_CSS3D: url = gpu_test_dir_.AppendASCII("mem_css3d.html"); @@ -226,7 +226,7 @@ class GpuMemoryTest : public content::ContentBrowserTest { std::set<content::Shell*> tabs_; std::set<content::Shell*> visible_tabs_; bool has_used_first_shell_; - FilePath gpu_test_dir_; + base::FilePath gpu_test_dir_; }; // When trying to load something that doesn't fit into our total GPU memory |