| Index: chrome/browser/ui/browser_browsertest.cc
|
| diff --git a/chrome/browser/ui/browser_browsertest.cc b/chrome/browser/ui/browser_browsertest.cc
|
| index 54a017450f6d2e1e08e6f5636400af9ac4de95cb..a73061d620b38bc77e5b3621a083d297f0845a77 100644
|
| --- a/chrome/browser/ui/browser_browsertest.cc
|
| +++ b/chrome/browser/ui/browser_browsertest.cc
|
| @@ -2159,7 +2159,7 @@ class LaunchBrowserWithNonAsciiUserDatadir : public BrowserTest {
|
|
|
| void SetUpCommandLine(base::CommandLine* command_line) override {
|
| ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
|
| - base::FilePath tmp_profile = temp_dir_.path().AppendASCII("tmp_profile");
|
| + base::FilePath tmp_profile = temp_dir_.GetPath().AppendASCII("tmp_profile");
|
| tmp_profile = tmp_profile.Append(L"Test Chrome G\u00E9raldine");
|
|
|
| ASSERT_TRUE(base::CreateDirectory(tmp_profile));
|
| @@ -2190,7 +2190,7 @@ class LaunchBrowserWithTrailingSlashDatadir : public BrowserTest {
|
|
|
| void SetUpCommandLine(base::CommandLine* command_line) override {
|
| ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
|
| - base::FilePath tmp_profile = temp_dir_.path().AppendASCII("tmp_profile");
|
| + base::FilePath tmp_profile = temp_dir_.GetPath().AppendASCII("tmp_profile");
|
| tmp_profile = tmp_profile.Append(L"Test Chrome\\");
|
|
|
| ASSERT_TRUE(base::CreateDirectory(tmp_profile));
|
|
|