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

Unified Diff: chrome/browser/chromeos/policy/enterprise_install_attributes_unittest.cc

Issue 2318023002: //chrome/browser/chromeos: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Address comment and also remove non-trivial cases 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/chromeos/policy/enterprise_install_attributes_unittest.cc
diff --git a/chrome/browser/chromeos/policy/enterprise_install_attributes_unittest.cc b/chrome/browser/chromeos/policy/enterprise_install_attributes_unittest.cc
index 89f465a6dcd96af33049b739f79a2bebca9aac8f..6e171e720fcc017b838602453071545457668d1d 100644
--- a/chrome/browser/chromeos/policy/enterprise_install_attributes_unittest.cc
+++ b/chrome/browser/chromeos/policy/enterprise_install_attributes_unittest.cc
@@ -56,7 +56,7 @@ class EnterpriseInstallAttributesTest : public testing::Test {
void TearDown() override { chromeos::DBusThreadManager::Shutdown(); }
base::FilePath GetTempPath() const {
- base::FilePath temp_path = base::MakeAbsoluteFilePath(temp_dir_.path());
+ base::FilePath temp_path = base::MakeAbsoluteFilePath(temp_dir_.GetPath());
return temp_path.Append("install_attrs_test");
}

Powered by Google App Engine
This is Rietveld 408576698