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

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

Issue 2701633002: [Media Router] Add DialMediaSinkService and DeviceDescriptionService (Closed)
Patch Set: resolve code review comments from Mark cont Created 3 years, 8 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/discovery/dial/mock_device_description_service.cc
diff --git a/chrome/browser/media/router/discovery/dial/mock_device_description_service.cc b/chrome/browser/media/router/discovery/dial/mock_device_description_service.cc
new file mode 100644
index 0000000000000000000000000000000000000000..8857e66fc7542d7c8c27fe963af33b9254afcb56
--- /dev/null
+++ b/chrome/browser/media/router/discovery/dial/mock_device_description_service.cc
@@ -0,0 +1,17 @@
+// 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/discovery/dial/mock_device_description_service.h"
+
+#include "chrome/browser/media/router/discovery/dial/dial_device_data.h"
+
+namespace media_router {
+
+MockDeviceDescriptionService::MockDeviceDescriptionService(
+ DeviceDescriptionParseSuccessCallback success_cb,
+ DeviceDescriptionParseErrorCallback error_cb)
+ : DeviceDescriptionService(success_cb, error_cb) {}
+MockDeviceDescriptionService::~MockDeviceDescriptionService() {}
+
+} // namespace media_router

Powered by Google App Engine
This is Rietveld 408576698