| 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();
|
|
|