Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(593)

Unified Diff: content/browser/gpu/gpu_memory_test.cc

Issue 12213066: Use base namespace for FilePath in content/browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/gpu/gpu_data_manager_impl_unittest.cc ('k') | content/browser/gpu/gpu_pixel_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/gpu/gpu_memory_test.cc
diff --git a/content/browser/gpu/gpu_memory_test.cc b/content/browser/gpu/gpu_memory_test.cc
index fc62846d10b2a1548b73d9215ce8be24e97fce32..00f7331537cfb855f860894dabdec567e85da288 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
« no previous file with comments | « content/browser/gpu/gpu_data_manager_impl_unittest.cc ('k') | content/browser/gpu/gpu_pixel_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698