1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "content/browser/indexed_db/mock_indexed_db_factory.h"
6 
7 #include <vector>
8 
9 namespace content {
10 
MockIndexedDBFactory()11 MockIndexedDBFactory::MockIndexedDBFactory() {
12 }
13 
~MockIndexedDBFactory()14 MockIndexedDBFactory::~MockIndexedDBFactory() {
15 }
16 
GetOpenDatabasesForOrigin(const url::Origin & origin) const17 std::vector<IndexedDBDatabase*> MockIndexedDBFactory::GetOpenDatabasesForOrigin(
18     const url::Origin& origin) const {
19   return std::vector<IndexedDBDatabase*>();
20 }
21 
22 }  // namespace content
23