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

Unified Diff: chrome/browser/diagnostics/diagnostics_controller_unittest.cc

Issue 2317993003: //chrome/browser and //components A-E: 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
Index: chrome/browser/diagnostics/diagnostics_controller_unittest.cc
diff --git a/chrome/browser/diagnostics/diagnostics_controller_unittest.cc b/chrome/browser/diagnostics/diagnostics_controller_unittest.cc
index a2f005c9a610fe02af9e7eb19a9235b8a791bc83..eb18d808a812cb5c490cbbd415f870992cf701fc 100644
--- a/chrome/browser/diagnostics/diagnostics_controller_unittest.cc
+++ b/chrome/browser/diagnostics/diagnostics_controller_unittest.cc
@@ -37,8 +37,8 @@ class DiagnosticsControllerTest : public testing::Test {
PathService::Get(chrome::DIR_TEST_DATA, &test_data);
test_data = test_data.Append(FILE_PATH_LITERAL("diagnostics"));
test_data = test_data.Append(FILE_PATH_LITERAL("user"));
- base::CopyDirectory(test_data, temp_dir_.path(), true);
- profile_dir_ = temp_dir_.path().Append(FILE_PATH_LITERAL("user"));
+ base::CopyDirectory(test_data, temp_dir_.GetPath(), true);
+ profile_dir_ = temp_dir_.GetPath().Append(FILE_PATH_LITERAL("user"));
#if defined(OS_CHROMEOS)
// Redirect the home dir to the profile directory. We have to do this

Powered by Google App Engine
This is Rietveld 408576698