Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1259)

Unified Diff: content/browser/indexed_db/mock_mojo_indexed_db_database_callbacks.h

Issue 2784003002: [IndexedDB] Mojo testing harness. (Closed)
Patch Set: comments, removed thread flushing Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/indexed_db/mock_mojo_indexed_db_database_callbacks.h
diff --git a/content/browser/indexed_db/mock_mojo_indexed_db_database_callbacks.h b/content/browser/indexed_db/mock_mojo_indexed_db_database_callbacks.h
new file mode 100644
index 0000000000000000000000000000000000000000..94562099bf7f603c0e228ca37d805b4c1bb2eb76
--- /dev/null
+++ b/content/browser/indexed_db/mock_mojo_indexed_db_database_callbacks.h
@@ -0,0 +1,48 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_BROWSER_INDEXED_DB_MOCK_MOJO_INDEXED_DB_DATABASE_CALLBACKS_H_
+#define CONTENT_BROWSER_INDEXED_DB_MOCK_MOJO_INDEXED_DB_DATABASE_CALLBACKS_H_
+
+#include <stdint.h>
+
+#include "base/macros.h"
+#include "content/common/indexed_db/indexed_db.mojom.h"
+#include "mojo/public/cpp/bindings/associated_binding.h"
+#include "testing/gmock/include/gmock/gmock.h"
+
+namespace content {
+
+class MockMojoIndexedDBDatabaseCallbacks
+ : public ::indexed_db::mojom::DatabaseCallbacks {
+ public:
+ MockMojoIndexedDBDatabaseCallbacks();
+ ~MockMojoIndexedDBDatabaseCallbacks();
+
+ ::indexed_db::mojom::DatabaseCallbacksAssociatedPtrInfo
+ CreateInterfacePtrAndBind();
+
+ MOCK_METHOD0(ForcedClose, void());
+ MOCK_METHOD2(VersionChange, void(int64_t old_version, int64_t new_version));
+ MOCK_METHOD3(Abort,
+ void(int64_t transaction_id,
+ int32_t code,
+ const base::string16& message));
+ MOCK_METHOD1(Complete, void(int64_t transaction_id));
+
+ MOCK_METHOD1(MockedChanges,
+ void(::indexed_db::mojom::ObserverChangesPtr* changes));
+ void Changes(::indexed_db::mojom::ObserverChangesPtr changes) override {
+ MockedChanges(&changes);
+ }
+
+ private:
+ mojo::AssociatedBinding<::indexed_db::mojom::DatabaseCallbacks> binding_;
+
+ DISALLOW_COPY_AND_ASSIGN(MockMojoIndexedDBDatabaseCallbacks);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_INDEXED_DB_MOCK_MOJO_INDEXED_DB_DATABASE_CALLBACKS_H_

Powered by Google App Engine
This is Rietveld 408576698