| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 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/media_sinks_search_request.h" |
| 6 |
| 7 namespace media_router { |
| 8 |
| 9 MediaSinksSearchRequest::MediaSinksSearchRequest(const MediaSource& source, |
| 10 const MediaSink::Id& sink_id) |
| 11 : source_(source), sink_id_(sink_id) {} |
| 12 |
| 13 MediaSinksSearchRequest::~MediaSinksSearchRequest() {} |
| 14 |
| 15 } // namespace media_router |
| OLD | NEW |