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

Unified Diff: content/shell/browser/layout_test/layout_test_browser_main.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/test_launcher.cc ('k') | content/test/test_blink_web_unit_test_support.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/browser/layout_test/layout_test_browser_main.cc
diff --git a/content/shell/browser/layout_test/layout_test_browser_main.cc b/content/shell/browser/layout_test/layout_test_browser_main.cc
index 46ad6d62bbbcc7057d3ea9b544ccc8525b0fd067..543d64fca5f7d32961c57a67008bd0a06ea6dd64 100644
--- a/content/shell/browser/layout_test/layout_test_browser_main.cc
+++ b/content/shell/browser/layout_test/layout_test_browser_main.cc
@@ -116,10 +116,11 @@ int LayoutTestBrowserMain(
base::ScopedTempDir browser_context_path_for_layout_tests;
CHECK(browser_context_path_for_layout_tests.CreateUniqueTempDir());
- CHECK(!browser_context_path_for_layout_tests.path().MaybeAsASCII().empty());
+ CHECK(
+ !browser_context_path_for_layout_tests.GetPath().MaybeAsASCII().empty());
base::CommandLine::ForCurrentProcess()->AppendSwitchASCII(
switches::kContentShellDataPath,
- browser_context_path_for_layout_tests.path().MaybeAsASCII());
+ browser_context_path_for_layout_tests.GetPath().MaybeAsASCII());
#if defined(OS_ANDROID)
content::EnsureInitializeForAndroidLayoutTests();
« no previous file with comments | « content/public/test/test_launcher.cc ('k') | content/test/test_blink_web_unit_test_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698