1 // Copyright 2013 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.
5 #ifndef CONTENT_BROWSER_INDEXED_DB_MOCK_INDEXED_DB_CALLBACKS_H_
6 #define CONTENT_BROWSER_INDEXED_DB_MOCK_INDEXED_DB_CALLBACKS_H_
8 #include "content/browser/indexed_db/indexed_db_callbacks.h"
9 #include "content/browser/indexed_db/indexed_db_connection.h"
13 class MockIndexedDBCallbacks
: public IndexedDBCallbacks
{
15 MockIndexedDBCallbacks();
16 MockIndexedDBCallbacks(bool expect_connection
);
18 virtual void OnSuccess() OVERRIDE
;
19 virtual void OnSuccess(const std::vector
<base::string16
>&) OVERRIDE
;
20 virtual void OnSuccess(scoped_ptr
<IndexedDBConnection
> connection
,
21 const IndexedDBDatabaseMetadata
& metadata
) OVERRIDE
;
22 IndexedDBConnection
* connection() { return connection_
.get(); }
25 virtual ~MockIndexedDBCallbacks();
27 scoped_ptr
<IndexedDBConnection
> connection_
;
30 bool expect_connection_
;
32 DISALLOW_COPY_AND_ASSIGN(MockIndexedDBCallbacks
);
35 } // namespace content
37 #endif // CONTENT_BROWSER_INDEXED_DB_MOCK_INDEXED_DB_CALLBACKS_H_