diff options
author | jsbell@chromium.org <jsbell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-28 18:22:58 +0000 |
---|---|---|
committer | jsbell@chromium.org <jsbell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-28 18:22:58 +0000 |
commit | 4d9d3bc75c7e6598f8c3b3341f8b9d05afcb821d (patch) | |
tree | d1cfc4b93f7716d60db658369a0c6a0309f26c96 /content/browser/indexed_db/indexed_db_quota_client_unittest.cc | |
parent | 5772630103e70aba61dbb547cc23d2c8ad0aa793 (diff) | |
download | chromium_src-4d9d3bc75c7e6598f8c3b3341f8b9d05afcb821d.zip chromium_src-4d9d3bc75c7e6598f8c3b3341f8b9d05afcb821d.tar.gz chromium_src-4d9d3bc75c7e6598f8c3b3341f8b9d05afcb821d.tar.bz2 |
Migrate the IndexedDB backend from Blink to Chromium
To get the IDB backend off the (deprecated) WebKit thread, remove
intermediate proxying, and let us take advantage of base utilities,
we're moving the code from Blink to Chromium.
This patch is basically a glorified copy/paste of the Blink IDB
backend code, with Chromium coding style applied, WTF dependencies
replaced with STL and base/, redundant classes removed, etc. It
introduces some new temporary proxy classes
(content/browser/webidb*_impl.*) to allow us build both the old and
new backends.
The new backend is currently disabled by default. It can be enabled
using a new (and temporary) command line switch: --new-indexeddb Once
we've done some further cleanup and are confident that the new backend
is stable, and the bots have moved from DumpRenderTree to
content_shell, we'll switch to the new backend by default. Once that
has survived through a dev channel release, we'll delete the Blink
code and eliminate unnecessary proxy classes.
BUG=234278
R=alecflett@chromium.org, dgrogan@chromium.org, piman@chromium.org
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=202215
Review URL: https://codereview.chromium.org/15564008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202604 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/indexed_db/indexed_db_quota_client_unittest.cc')
-rw-r--r-- | content/browser/indexed_db/indexed_db_quota_client_unittest.cc | 58 |
1 files changed, 24 insertions, 34 deletions
diff --git a/content/browser/indexed_db/indexed_db_quota_client_unittest.cc b/content/browser/indexed_db/indexed_db_quota_client_unittest.cc index 2570f9d..e87f2a5 100644 --- a/content/browser/indexed_db/indexed_db_quota_client_unittest.cc +++ b/content/browser/indexed_db/indexed_db_quota_client_unittest.cc @@ -48,15 +48,15 @@ class IndexedDBQuotaClientTest : public testing::Test { io_thread_(BrowserThread::IO, &message_loop_) { browser_context_.reset(new TestBrowserContext()); idb_context_ = static_cast<IndexedDBContextImpl*>( - BrowserContext::GetDefaultStoragePartition(browser_context_.get())-> - GetIndexedDBContext()); + BrowserContext::GetDefaultStoragePartition(browser_context_.get()) + ->GetIndexedDBContext()); message_loop_.RunUntilIdle(); setup_temp_dir(); } void setup_temp_dir() { ASSERT_TRUE(temp_dir_.CreateUniqueTempDir()); - base::FilePath indexeddb_dir = temp_dir_.path().Append( - IndexedDBContextImpl::kIndexedDBDirectory); + base::FilePath indexeddb_dir = + temp_dir_.path().Append(IndexedDBContextImpl::kIndexedDBDirectory); ASSERT_TRUE(file_util::CreateDirectory(indexeddb_dir)); idb_context()->set_data_path_for_testing(indexeddb_dir); } @@ -71,13 +71,13 @@ class IndexedDBQuotaClientTest : public testing::Test { base::MessageLoop::current()->RunUntilIdle(); } - int64 GetOriginUsage( - quota::QuotaClient* client, - const GURL& origin, - quota::StorageType type) { + int64 GetOriginUsage(quota::QuotaClient* client, + const GURL& origin, + quota::StorageType type) { usage_ = -1; client->GetOriginUsage( - origin, type, + origin, + type, base::Bind(&IndexedDBQuotaClientTest::OnGetOriginUsageComplete, weak_factory_.GetWeakPtr())); base::MessageLoop::current()->RunUntilIdle(); @@ -85,9 +85,8 @@ class IndexedDBQuotaClientTest : public testing::Test { return usage_; } - const std::set<GURL>& GetOriginsForType( - quota::QuotaClient* client, - quota::StorageType type) { + const std::set<GURL>& GetOriginsForType(quota::QuotaClient* client, + quota::StorageType type) { origins_.clear(); type_ = quota::kStorageTypeTemporary; client->GetOriginsForType( @@ -98,14 +97,14 @@ class IndexedDBQuotaClientTest : public testing::Test { return origins_; } - const std::set<GURL>& GetOriginsForHost( - quota::QuotaClient* client, - quota::StorageType type, - const std::string& host) { + const std::set<GURL>& GetOriginsForHost(quota::QuotaClient* client, + quota::StorageType type, + const std::string& host) { origins_.clear(); type_ = quota::kStorageTypeTemporary; client->GetOriginsForHost( - type, host, + type, + host, base::Bind(&IndexedDBQuotaClientTest::OnGetOriginsComplete, weak_factory_.GetWeakPtr())); base::MessageLoop::current()->RunUntilIdle(); @@ -116,7 +115,8 @@ class IndexedDBQuotaClientTest : public testing::Test { const GURL& origin_url) { delete_status_ = quota::kQuotaStatusUnknown; client->DeleteOriginData( - origin_url, kTemp, + origin_url, + kTemp, base::Bind(&IndexedDBQuotaClientTest::OnDeleteOriginComplete, weak_factory_.GetWeakPtr())); base::MessageLoop::current()->RunUntilIdle(); @@ -143,12 +143,10 @@ class IndexedDBQuotaClientTest : public testing::Test { } private: - void OnGetOriginUsageComplete(int64 usage) { - usage_ = usage; - } + void OnGetOriginUsageComplete(int64 usage) { usage_ = usage; } void OnGetOriginsComplete(const std::set<GURL>& origins, - quota::StorageType type) { + quota::StorageType type) { origins_ = origins; type_ = type; } @@ -174,9 +172,7 @@ class IndexedDBQuotaClientTest : public testing::Test { }; TEST_F(IndexedDBQuotaClientTest, GetOriginUsage) { - IndexedDBQuotaClient client( - base::MessageLoopProxy::current(), - idb_context()); + IndexedDBQuotaClient client(base::MessageLoopProxy::current(), idb_context()); AddFakeIndexedDB(kOriginA, 6); AddFakeIndexedDB(kOriginB, 3); @@ -193,9 +189,7 @@ TEST_F(IndexedDBQuotaClientTest, GetOriginUsage) { } TEST_F(IndexedDBQuotaClientTest, GetOriginsForHost) { - IndexedDBQuotaClient client( - base::MessageLoopProxy::current(), - idb_context()); + IndexedDBQuotaClient client(base::MessageLoopProxy::current(), idb_context()); EXPECT_EQ(kOriginA.host(), kOriginB.host()); EXPECT_NE(kOriginA.host(), kOriginOther.host()); @@ -219,9 +213,7 @@ TEST_F(IndexedDBQuotaClientTest, GetOriginsForHost) { } TEST_F(IndexedDBQuotaClientTest, GetOriginsForType) { - IndexedDBQuotaClient client( - base::MessageLoopProxy::current(), - idb_context()); + IndexedDBQuotaClient client(base::MessageLoopProxy::current(), idb_context()); EXPECT_TRUE(GetOriginsForType(&client, kTemp).empty()); EXPECT_TRUE(GetOriginsForType(&client, kPerm).empty()); @@ -235,9 +227,7 @@ TEST_F(IndexedDBQuotaClientTest, GetOriginsForType) { } TEST_F(IndexedDBQuotaClientTest, DeleteOrigin) { - IndexedDBQuotaClient client( - base::MessageLoopProxy::current(), - idb_context()); + IndexedDBQuotaClient client(base::MessageLoopProxy::current(), idb_context()); AddFakeIndexedDB(kOriginA, 1000); AddFakeIndexedDB(kOriginB, 50); |