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(int64
) OVERRIDE
;
20 virtual void OnSuccess(const std::vector
<base::string16
>&) OVERRIDE
;
21 virtual void OnSuccess(scoped_ptr
<IndexedDBConnection
> connection
,
22 const IndexedDBDatabaseMetadata
& metadata
) OVERRIDE
;
23 IndexedDBConnection
* connection() { return connection_
.get(); }
26 virtual ~MockIndexedDBCallbacks();
28 scoped_ptr
<IndexedDBConnection
> connection_
;
31 bool expect_connection_
;
33 DISALLOW_COPY_AND_ASSIGN(MockIndexedDBCallbacks
);
36 } // namespace content
38 #endif // CONTENT_BROWSER_INDEXED_DB_MOCK_INDEXED_DB_CALLBACKS_H_