| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h" | 5 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h" |
| 6 | 6 |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "base/threading/thread_task_runner_handle.h" | 8 #include "base/threading/thread_task_runner_handle.h" |
| 9 #include "chrome/test/base/testing_profile.h" | 9 #include "chrome/test/base/testing_profile.h" |
| 10 #include "content/public/browser/browser_context.h" | 10 #include "content/public/browser/browser_context.h" |
| 11 #include "content/public/browser/storage_partition.h" | 11 #include "content/public/browser/storage_partition.h" |
| 12 #include "content/public/test/test_browser_thread_bundle.h" | 12 #include "content/public/test/test_browser_thread_bundle.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 14 | 14 |
| 15 namespace { | 15 namespace { |
| 16 | 16 |
| 17 class CannedBrowsingDataIndexedDBHelperTest : public testing::Test { | 17 class CannedBrowsingDataIndexedDBHelperTest : public testing::Test { |
| 18 public: | 18 public: |
| 19 void SetUp() override { | |
| 20 IndexedDBContext()->SetTaskRunnerForTesting( | |
| 21 base::ThreadTaskRunnerHandle::Get().get()); | |
| 22 } | |
| 23 | |
| 24 content::IndexedDBContext* IndexedDBContext() { | 19 content::IndexedDBContext* IndexedDBContext() { |
| 25 return content::BrowserContext::GetDefaultStoragePartition(&profile_)-> | 20 return content::BrowserContext::GetDefaultStoragePartition(&profile_)-> |
| 26 GetIndexedDBContext(); | 21 GetIndexedDBContext(); |
| 27 } | 22 } |
| 28 | 23 |
| 29 private: | 24 private: |
| 30 content::TestBrowserThreadBundle thread_bundle_; | 25 content::TestBrowserThreadBundle thread_bundle_; |
| 31 TestingProfile profile_; | 26 TestingProfile profile_; |
| 32 }; | 27 }; |
| 33 | 28 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 new CannedBrowsingDataIndexedDBHelper(IndexedDBContext())); | 69 new CannedBrowsingDataIndexedDBHelper(IndexedDBContext())); |
| 75 | 70 |
| 76 ASSERT_TRUE(helper->empty()); | 71 ASSERT_TRUE(helper->empty()); |
| 77 helper->AddIndexedDB(origin1, description); | 72 helper->AddIndexedDB(origin1, description); |
| 78 ASSERT_TRUE(helper->empty()); | 73 ASSERT_TRUE(helper->empty()); |
| 79 helper->AddIndexedDB(origin2, description); | 74 helper->AddIndexedDB(origin2, description); |
| 80 ASSERT_TRUE(helper->empty()); | 75 ASSERT_TRUE(helper->empty()); |
| 81 } | 76 } |
| 82 | 77 |
| 83 } // namespace | 78 } // namespace |
| OLD | NEW |