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

Unified Diff: chrome/browser/media/router/mock_device_description_service.cc

Issue 2701633002: [Media Router] Add DialMediaSinkService and DeviceDescriptionService (Closed)
Patch Set: Add DialMediaSinkCacheService and unit test 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: chrome/browser/media/router/mock_device_description_service.cc
diff --git a/chrome/browser/media/router/mock_device_description_service.cc b/chrome/browser/media/router/mock_device_description_service.cc
new file mode 100644
index 0000000000000000000000000000000000000000..19517d1279f3aa374e4e8630bbce6b9a5a708b8d
--- /dev/null
+++ b/chrome/browser/media/router/mock_device_description_service.cc
@@ -0,0 +1,19 @@
+// 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.
+
+#include "chrome/browser/media/router/mock_device_description_service.h"
+
+#include "chrome/browser/extensions/api/dial/dial_device_data.h"
+
+namespace media_router {
+
+MockDeviceDescriptionServiceObserver::MockDeviceDescriptionServiceObserver() {}
+MockDeviceDescriptionServiceObserver::~MockDeviceDescriptionServiceObserver() {}
+
+MockDeviceDescriptionService::MockDeviceDescriptionService(
+ DeviceDescriptionService::Observer* observer)
+ : DeviceDescriptionService(observer) {}
+MockDeviceDescriptionService::~MockDeviceDescriptionService() {}
+
+} // namespace media_router

Powered by Google App Engine
This is Rietveld 408576698