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

Unified Diff: chromecast/base/error_codes_unittest.cc

Issue 2322573002: misc files A-P: 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: chromecast/base/error_codes_unittest.cc
diff --git a/chromecast/base/error_codes_unittest.cc b/chromecast/base/error_codes_unittest.cc
index 42f3604907846dad78be13661d7791117af34a64..0d9494e9eb94a3cb67a528dc78fb60f1e5e1edd7 100644
--- a/chromecast/base/error_codes_unittest.cc
+++ b/chromecast/base/error_codes_unittest.cc
@@ -24,10 +24,10 @@ class ErrorCodesTest : public testing::Test {
// Set up a temporary directory which will be used as our fake home dir.
ASSERT_TRUE(fake_home_dir_.CreateUniqueTempDir());
path_override_.reset(
- new base::ScopedPathOverride(base::DIR_HOME, fake_home_dir_.path()));
+ new base::ScopedPathOverride(base::DIR_HOME, fake_home_dir_.GetPath()));
}
- base::FilePath home_path() const { return fake_home_dir_.path(); }
+ base::FilePath home_path() const { return fake_home_dir_.GetPath(); }
private:
base::ScopedTempDir fake_home_dir_;

Powered by Google App Engine
This is Rietveld 408576698