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

Unified Diff: content/browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc

Issue 2316043002: //content: 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: content/browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc
diff --git a/content/browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc b/content/browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc
index 5f09ef08db2290065eefa6c28e161eee0e3e7f64..06d34197cf571d44c331b7052ee8f3f7ffa4dbde 100644
--- a/content/browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc
+++ b/content/browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc
@@ -85,7 +85,7 @@ TEST(IndexedDBIOErrorTest, CleanUpTest) {
const url::Origin origin(GURL("http://localhost:81"));
base::ScopedTempDir temp_directory;
ASSERT_TRUE(temp_directory.CreateUniqueTempDir());
- const base::FilePath path = temp_directory.path();
+ const base::FilePath path = temp_directory.GetPath();
scoped_refptr<net::URLRequestContextGetter> request_context_getter;
BustedLevelDBFactory busted_factory;
@@ -114,7 +114,7 @@ TEST(IndexedDBNonRecoverableIOErrorTest, NuancedCleanupTest) {
scoped_refptr<net::URLRequestContextGetter> request_context_getter;
base::ScopedTempDir temp_directory;
ASSERT_TRUE(temp_directory.CreateUniqueTempDir());
- const base::FilePath path = temp_directory.path();
+ const base::FilePath path = temp_directory.GetPath();
content::IndexedDBDataLossInfo data_loss_info;
bool disk_full = false;
base::SequencedTaskRunner* task_runner = NULL;

Powered by Google App Engine
This is Rietveld 408576698