Chromium Code Reviews| Index: components/media_router/media_sink.cc |
| diff --git a/chrome/browser/media/router/media_sink.cc b/components/media_router/media_sink.cc |
| similarity index 95% |
| rename from chrome/browser/media/router/media_sink.cc |
| rename to components/media_router/media_sink.cc |
| index a48435030972946f1a9283967848fe35a24d63d2..9d83f34b474f8202f838b9e6a84316f7e386230f 100644 |
| --- a/chrome/browser/media/router/media_sink.cc |
| +++ b/components/media_router/media_sink.cc |
| @@ -2,9 +2,9 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| +#include "components/media_router/media_sink.h" |
| #include "base/i18n/string_compare.h" |
|
sdefresne
2017/04/03 13:34:07
nit: blank line above
takumif
2017/04/04 17:34:50
Done.
|
| #include "base/strings/utf_string_conversions.h" |
| -#include "chrome/browser/media/router/media_sink.h" |
| #include "third_party/icu/source/i18n/unicode/coll.h" |
| namespace media_router { |
| @@ -18,8 +18,7 @@ MediaSink::MediaSink(const MediaSink& other) = default; |
| MediaSink::MediaSink() {} |
| -MediaSink::~MediaSink() { |
| -} |
| +MediaSink::~MediaSink() {} |
| bool MediaSink::Equals(const MediaSink& other) const { |
| return sink_id_ == other.sink_id_; |