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

Unified Diff: content/browser/indexed_db/mock_indexed_db_callbacks.cc

Issue 2727733004: [IndexedDB] Closing mojo connections when renderer quits (Closed)
Patch Set: tests running Created 3 years, 9 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_indexed_db_callbacks.cc
diff --git a/content/browser/indexed_db/mock_indexed_db_callbacks.cc b/content/browser/indexed_db/mock_indexed_db_callbacks.cc
index 56221ed61b0151b8a68612d8d4dd51706ad5b227..b5f4ba958a316795657a6135e2ee609759fe8b26 100644
--- a/content/browser/indexed_db/mock_indexed_db_callbacks.cc
+++ b/content/browser/indexed_db/mock_indexed_db_callbacks.cc
@@ -6,15 +6,16 @@
#include <utility>
+#include "base/threading/thread_task_runner_handle.h"
pwnall 2017/03/27 21:55:12 why?
dmurph 2017/03/29 18:40:24 Done.
#include "testing/gtest/include/gtest/gtest.h"
namespace content {
MockIndexedDBCallbacks::MockIndexedDBCallbacks()
- : IndexedDBCallbacks(nullptr, url::Origin(), nullptr),
+ : IndexedDBCallbacks(nullptr, url::Origin(), nullptr, nullptr),
expect_connection_(true) {}
MockIndexedDBCallbacks::MockIndexedDBCallbacks(bool expect_connection)
- : IndexedDBCallbacks(nullptr, url::Origin(), nullptr),
+ : IndexedDBCallbacks(nullptr, url::Origin(), nullptr, nullptr),
expect_connection_(expect_connection) {}
MockIndexedDBCallbacks::~MockIndexedDBCallbacks() {

Powered by Google App Engine
This is Rietveld 408576698