Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/media/router/extension_media_route_provider_manager_hos t.h" | |
| 6 | |
| 7 #include "base/guid.h" | |
| 8 #include "chrome/browser/media/router/extension_mrpm_host_factory.h" | |
| 9 #include "chrome/browser/media/router/media_router.h" | |
| 10 #include "chrome/browser/media/router/media_source.h" | |
| 11 #include "content/public/browser/browser_context.h" | |
| 12 | |
| 13 using content::BrowserContext; | |
| 14 | |
| 15 namespace media_router { | |
| 16 | |
| 17 ExtensionMediaRouteProviderManagerHost::ExtensionMediaRouteProviderManagerHost( | |
| 18 BrowserContext* context, | |
| 19 MediaRouteProviderManagerHost::Delegate* delegate) | |
| 20 : delegate_(delegate), | |
| 21 context_(context) { | |
| 22 DCHECK(context_); | |
| 23 DCHECK(delegate_); | |
| 24 } | |
| 25 | |
| 26 ExtensionMediaRouteProviderManagerHost:: | |
| 27 ~ExtensionMediaRouteProviderManagerHost() { | |
| 28 } | |
| 29 | |
| 30 void ExtensionMediaRouteProviderManagerHost::AddMediaSinksQuery( | |
| 31 const MediaSource& source) { | |
| 32 NOTIMPLEMENTED(); | |
|
Kevin M
2015/03/26 20:50:14
Add landing TODO to help out our other reviewers
imcheng
2015/03/26 23:33:12
Done.
| |
| 33 } | |
| 34 | |
| 35 void ExtensionMediaRouteProviderManagerHost::RemoveMediaSinksQuery( | |
| 36 const MediaSource& source) { | |
| 37 NOTIMPLEMENTED(); | |
| 38 } | |
| 39 | |
| 40 void ExtensionMediaRouteProviderManagerHost::RequestRoute( | |
| 41 const RouteRequestId& request_id, | |
| 42 const MediaSource& source, | |
| 43 const MediaSinkId& sink_id) { | |
| 44 NOTIMPLEMENTED(); | |
| 45 } | |
| 46 | |
| 47 void ExtensionMediaRouteProviderManagerHost::CloseRoute( | |
| 48 const MediaRouteId& route_id) { | |
| 49 NOTIMPLEMENTED(); | |
| 50 } | |
| 51 | |
| 52 void ExtensionMediaRouteProviderManagerHost::PostMessage( | |
| 53 const MediaRouteId& route_id, | |
| 54 const std::string& message, | |
| 55 const std::string& extra_info_json) { | |
| 56 NOTIMPLEMENTED(); | |
| 57 } | |
| 58 | |
| 59 void ExtensionMediaRouteProviderManagerHost::StartMediaRoutesQuery() { | |
| 60 NOTIMPLEMENTED(); | |
| 61 } | |
| 62 | |
| 63 void ExtensionMediaRouteProviderManagerHost::StopMediaRoutesQuery() { | |
| 64 NOTIMPLEMENTED(); | |
| 65 } | |
| 66 | |
| 67 } // namespace media_router | |
| OLD | NEW |