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

Unified Diff: content/browser/gamepad/gamepad_service_test_helpers.cc

Issue 2081583002: Migrating majority of gamepad from content/browser/ to device/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Final tweaks Created 4 years, 5 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/gamepad/gamepad_service_test_helpers.cc
diff --git a/content/browser/gamepad/gamepad_service_test_helpers.cc b/content/browser/gamepad/gamepad_service_test_helpers.cc
new file mode 100644
index 0000000000000000000000000000000000000000..195dd8f9d23619f2e1ffd8f114fb9f31f5c25703
--- /dev/null
+++ b/content/browser/gamepad/gamepad_service_test_helpers.cc
@@ -0,0 +1,22 @@
+// Copyright (c) 2012 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.
+
+#include "content/browser/gamepad/gamepad_service_test_helpers.h"
+
+#include "content/browser/gamepad/gamepad_service.h"
+
+namespace content {
+
+GamepadServiceTestConstructor::GamepadServiceTestConstructor(
+ const blink::WebGamepads& test_data) {
+ data_fetcher_ = new device::MockGamepadDataFetcher(test_data);
+ gamepad_service_ = new GamepadService(
+ std::unique_ptr<device::GamepadDataFetcher>(data_fetcher_));
+}
+
+GamepadServiceTestConstructor::~GamepadServiceTestConstructor() {
+ delete gamepad_service_;
+}
+
+} // namespace content
« no previous file with comments | « content/browser/gamepad/gamepad_service_test_helpers.h ('k') | content/browser/gamepad/gamepad_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698