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

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

Issue 19117005: IndexedDB: Coding conventions and cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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_transaction.cc
diff --git a/content/browser/indexed_db/indexed_db_transaction.cc b/content/browser/indexed_db/indexed_db_transaction.cc
index 19b2b28fc5befd7c7a5a403f8a5ec526b801250a..b096f3b3319a0878f5c7aee2c479080358538abf 100644
--- a/content/browser/indexed_db/indexed_db_transaction.cc
+++ b/content/browser/indexed_db/indexed_db_transaction.cc
@@ -50,20 +50,6 @@ IndexedDBTransaction::TaskStack::pop() {
return task.Pass();
}
-scoped_refptr<IndexedDBTransaction> IndexedDBTransaction::Create(
- int64 id,
- scoped_refptr<IndexedDBDatabaseCallbacks> callbacks,
- const std::vector<int64>& object_store_ids,
- indexed_db::TransactionMode mode,
- IndexedDBDatabase* database) {
- std::set<int64> object_store_hash_set;
jsbell 2013/07/13 00:18:32 This vector -> set conversion is replaced at the c
- for (size_t i = 0; i < object_store_ids.size(); ++i)
- object_store_hash_set.insert(object_store_ids[i]);
-
- return make_scoped_refptr(new IndexedDBTransaction(
- id, callbacks, object_store_hash_set, mode, database));
-}
-
IndexedDBTransaction::IndexedDBTransaction(
int64 id,
scoped_refptr<IndexedDBDatabaseCallbacks> callbacks,
@@ -111,8 +97,7 @@ void IndexedDBTransaction::ScheduleTask(IndexedDBDatabase::TaskType type,
} else if (state_ == RUNNING && !should_process_queue_) {
should_process_queue_ = true;
base::MessageLoop::current()->PostTask(
- FROM_HERE,
- base::Bind(&IndexedDBTransaction::ProcessTaskQueue, this));
+ FROM_HERE, base::Bind(&IndexedDBTransaction::ProcessTaskQueue, this));
}
}
@@ -194,8 +179,7 @@ void IndexedDBTransaction::Run() {
should_process_queue_ = true;
base::MessageLoop::current()->PostTask(
- FROM_HERE,
- base::Bind(&IndexedDBTransaction::ProcessTaskQueue, this));
+ FROM_HERE, base::Bind(&IndexedDBTransaction::ProcessTaskQueue, this));
}
void IndexedDBTransaction::Start() {

Powered by Google App Engine
This is Rietveld 408576698