| 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 8766162604bbad52681c75241e6762154355be8b..3f01b69e9e0a3620207810bef6d564d8d4e445ec 100644 | 
| --- a/content/browser/indexed_db/indexed_db_fake_backing_store.cc | 
| +++ b/content/browser/indexed_db/indexed_db_fake_backing_store.cc | 
| @@ -4,10 +4,19 @@ | 
|  | 
| #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 { | 
|  | 
| +IndexedDBFakeBackingStore::IndexedDBFakeBackingStore() | 
| +    : IndexedDBBackingStore(NULL, | 
| +                            GURL("http://localhost:81"), | 
| +                            base::FilePath(), | 
| +                            NULL, | 
| +                            scoped_ptr<LevelDBDatabase>(), | 
| +                            scoped_ptr<LevelDBComparator>(), | 
| +                            NULL) {} | 
| IndexedDBFakeBackingStore::~IndexedDBFakeBackingStore() {} | 
|  | 
| std::vector<string16> IndexedDBFakeBackingStore::GetDatabaseNames() { | 
|  |