| 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 609ebfadb01e696bebe0642e6d3105667fe97fcc..a922cffa36870e9d56825617fa94007084447920 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());
|
|
|