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

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: Merge out 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
« no previous file with comments | « content/browser/indexed_db/indexed_db_dispatcher_host.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 4bb55461f7716fb0feeda31fe5369efbf4b02036..b483bb31d38c358ae2680088f80066ee78907f42 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) {}
« no previous file with comments | « content/browser/indexed_db/indexed_db_dispatcher_host.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698