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

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

Issue 311263014: IndexedDB: Fix trivial cpplint.py errors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 6 years, 6 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_context_impl.cc
diff --git a/content/browser/indexed_db/indexed_db_context_impl.cc b/content/browser/indexed_db/indexed_db_context_impl.cc
index 14d8e4de06e55f71a3d2ac1e736d82eb4db85141..c2bd0afa62cf334ca226bd1aef8f8a289b5a7408 100644
--- a/content/browser/indexed_db/indexed_db_context_impl.cc
+++ b/content/browser/indexed_db/indexed_db_context_impl.cc
@@ -5,6 +5,7 @@
#include "content/browser/indexed_db/indexed_db_context_impl.h"
#include <algorithm>
+#include <utility>
#include "base/bind.h"
#include "base/command_line.h"
@@ -197,7 +198,6 @@ base::ListValue* IndexedDBContextImpl::GetAllOriginsDetails() {
for (IndexedDBFactory::OriginDBMapIterator it = range.first;
it != range.second;
++it) {
-
const IndexedDBDatabase* db = it->second;
scoped_ptr<base::DictionaryValue> db_info(new base::DictionaryValue());
@@ -217,7 +217,6 @@ base::ListValue* IndexedDBContextImpl::GetAllOriginsDetails() {
transactions.begin();
trans_it != transactions.end();
++trans_it) {
-
const IndexedDBTransaction* transaction = *trans_it;
scoped_ptr<base::DictionaryValue> transaction_info(
new base::DictionaryValue());
« no previous file with comments | « content/browser/indexed_db/indexed_db_context_impl.h ('k') | content/browser/indexed_db/indexed_db_cursor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698