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

Unified Diff: chrome/browser/extensions/activity_log/database_string_table_unittest.cc

Issue 2314363002: extensions: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Comment addressed 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/extensions/activity_log/database_string_table_unittest.cc
diff --git a/chrome/browser/extensions/activity_log/database_string_table_unittest.cc b/chrome/browser/extensions/activity_log/database_string_table_unittest.cc
index ce0ced8df77169367d95c200cd09d9ca30d81f30..31d2612c93674de98c859eb8d520ff2eed5f7b94 100644
--- a/chrome/browser/extensions/activity_log/database_string_table_unittest.cc
+++ b/chrome/browser/extensions/activity_log/database_string_table_unittest.cc
@@ -19,7 +19,7 @@ class DatabaseStringTableTest : public testing::Test {
protected:
void SetUp() override {
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
- base::FilePath db_file = temp_dir_.path().AppendASCII("StringTable.db");
+ base::FilePath db_file = temp_dir_.GetPath().AppendASCII("StringTable.db");
ASSERT_TRUE(db_.Open(db_file));
}

Powered by Google App Engine
This is Rietveld 408576698