summaryrefslogtreecommitdiffstats
path: root/chromium/content/browser/indexed_db/mock_indexed_db_callbacks.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/browser/indexed_db/mock_indexed_db_callbacks.h')
-rw-r--r--chromium/content/browser/indexed_db/mock_indexed_db_callbacks.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/chromium/content/browser/indexed_db/mock_indexed_db_callbacks.h b/chromium/content/browser/indexed_db/mock_indexed_db_callbacks.h
index 1af3ca1781e..fecfd1abb29 100644
--- a/chromium/content/browser/indexed_db/mock_indexed_db_callbacks.h
+++ b/chromium/content/browser/indexed_db/mock_indexed_db_callbacks.h
@@ -5,6 +5,8 @@
#ifndef CONTENT_BROWSER_INDEXED_DB_MOCK_INDEXED_DB_CALLBACKS_H_
#define CONTENT_BROWSER_INDEXED_DB_MOCK_INDEXED_DB_CALLBACKS_H_
+#include <vector>
+
#include "content/browser/indexed_db/indexed_db_callbacks.h"
#include "content/browser/indexed_db/indexed_db_connection.h"
@@ -13,10 +15,12 @@ namespace content {
class MockIndexedDBCallbacks : public IndexedDBCallbacks {
public:
MockIndexedDBCallbacks();
- MockIndexedDBCallbacks(bool expect_connection);
+ explicit MockIndexedDBCallbacks(bool expect_connection);
virtual void OnSuccess() OVERRIDE;
- virtual void OnSuccess(const std::vector<base::string16>&) OVERRIDE;
+ virtual void OnSuccess(int64 result) OVERRIDE;
+ virtual void OnSuccess(const std::vector<base::string16>& result) OVERRIDE;
+ virtual void OnSuccess(const IndexedDBKey& key) OVERRIDE;
virtual void OnSuccess(scoped_ptr<IndexedDBConnection> connection,
const IndexedDBDatabaseMetadata& metadata) OVERRIDE;
IndexedDBConnection* connection() { return connection_.get(); }