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

Unified Diff: content/public/test/test_browser_context.cc

Issue 2316043002: //content: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Just rebased Created 4 years, 3 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/public/test/async_file_test_helper.cc ('k') | content/public/test/test_launcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_browser_context.cc
diff --git a/content/public/test/test_browser_context.cc b/content/public/test/test_browser_context.cc
index 2c8ac4e7c75ced58c76da10f3ae405c95f592569..0929df4e0023835d6b22d316409d0d4ef8580042 100644
--- a/content/public/test/test_browser_context.cc
+++ b/content/public/test/test_browser_context.cc
@@ -46,7 +46,7 @@ namespace content {
TestBrowserContext::TestBrowserContext() {
EXPECT_TRUE(browser_context_dir_.CreateUniqueTempDir());
- BrowserContext::Initialize(this, browser_context_dir_.path());
+ BrowserContext::Initialize(this, browser_context_dir_.GetPath());
}
TestBrowserContext::~TestBrowserContext() {
@@ -75,7 +75,7 @@ net::URLRequestContextGetter* TestBrowserContext::GetRequestContext() {
}
base::FilePath TestBrowserContext::GetPath() const {
- return browser_context_dir_.path();
+ return browser_context_dir_.GetPath();
}
std::unique_ptr<ZoomLevelDelegate> TestBrowserContext::CreateZoomLevelDelegate(
« no previous file with comments | « content/public/test/async_file_test_helper.cc ('k') | content/public/test/test_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698