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

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

Issue 232343004: Pass blob info through from the IPC to the backing store on put. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix some nits Created 6 years, 8 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_fake_backing_store.cc
diff --git a/content/browser/indexed_db/indexed_db_fake_backing_store.cc b/content/browser/indexed_db/indexed_db_fake_backing_store.cc
index a40e5760e55dd697116bfbced42099821b7b79e2..0eefd89ef6885969527f30342ca604135bc7133c 100644
--- a/content/browser/indexed_db/indexed_db_fake_backing_store.cc
+++ b/content/browser/indexed_db/indexed_db_fake_backing_store.cc
@@ -4,6 +4,7 @@
#include "content/browser/indexed_db/indexed_db_fake_backing_store.h"
+#include "base/files/file_path.h"
#include "base/memory/scoped_ptr.h"
namespace content {
@@ -11,6 +12,7 @@ namespace content {
IndexedDBFakeBackingStore::IndexedDBFakeBackingStore()
: IndexedDBBackingStore(NULL,
GURL("http://localhost:81"),
+ base::FilePath(),
scoped_ptr<LevelDBDatabase>(),
scoped_ptr<LevelDBComparator>(),
NULL) {}
@@ -20,6 +22,7 @@ IndexedDBFakeBackingStore::IndexedDBFakeBackingStore(
base::TaskRunner* task_runner)
: IndexedDBBackingStore(factory,
GURL("http://localhost:81"),
+ base::FilePath(),
scoped_ptr<LevelDBDatabase>(),
scoped_ptr<LevelDBComparator>(),
task_runner) {}

Powered by Google App Engine
This is Rietveld 408576698