| 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 02636f8134c68d3d06049c21ac2ae82984976f35..2228a232bab5416272badc984331000866773831 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
|
| @@ -83,7 +83,7 @@ class BustedLevelDBFactory : public LevelDBFactory {
|
|
|
| TEST(IndexedDBIOErrorTest, CleanUpTest) {
|
| content::IndexedDBFactory* factory = NULL;
|
| - const GURL origin("http://localhost:81");
|
| + const url::Origin origin(GURL("http://localhost:81"));
|
| base::ScopedTempDir temp_directory;
|
| ASSERT_TRUE(temp_directory.CreateUniqueTempDir());
|
| const base::FilePath path = temp_directory.path();
|
| @@ -120,7 +120,7 @@ TEST(IndexedDBIOErrorTest, CleanUpTest) {
|
|
|
| TEST(IndexedDBNonRecoverableIOErrorTest, NuancedCleanupTest) {
|
| content::IndexedDBFactory* factory = NULL;
|
| - const GURL origin("http://localhost:81");
|
| + const url::Origin origin(GURL("http://localhost:81"));
|
| net::URLRequestContext* request_context = NULL;
|
| base::ScopedTempDir temp_directory;
|
| ASSERT_TRUE(temp_directory.CreateUniqueTempDir());
|
|
|