Apply _RELATIVE relocations ahead of others.
[chromium-blink-merge.git] / content / browser / indexed_db / mock_indexed_db_callbacks.h
blob24743fe0b3268fef4de802766206cce97373d8b6
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 <vector>
10 #include "content/browser/indexed_db/indexed_db_callbacks.h"
11 #include "content/browser/indexed_db/indexed_db_connection.h"
13 namespace content {
15 class MockIndexedDBCallbacks : public IndexedDBCallbacks {
16 public:
17 MockIndexedDBCallbacks();
18 explicit MockIndexedDBCallbacks(bool expect_connection);
20 void OnSuccess() override;
21 void OnSuccess(int64 result) override;
22 void OnSuccess(const std::vector<base::string16>& result) override;
23 void OnSuccess(const IndexedDBKey& key) override;
24 void OnSuccess(scoped_ptr<IndexedDBConnection> connection,
25 const IndexedDBDatabaseMetadata& metadata) override;
26 IndexedDBConnection* connection() { return connection_.get(); }
28 protected:
29 ~MockIndexedDBCallbacks() override;
31 scoped_ptr<IndexedDBConnection> connection_;
33 private:
34 bool expect_connection_;
36 DISALLOW_COPY_AND_ASSIGN(MockIndexedDBCallbacks);
39 } // namespace content
41 #endif // CONTENT_BROWSER_INDEXED_DB_MOCK_INDEXED_DB_CALLBACKS_H_