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

Unified Diff: chrome/browser/media/router/media_sink.h

Issue 1363593003: [Media Router] Set timeout for route creation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes per imcheng@'s comments. Created 5 years, 2 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/media_sink.h
diff --git a/chrome/browser/media/router/media_sink.h b/chrome/browser/media/router/media_sink.h
index d94a047603a2aa2b65273e0e13b980670ef47c8d..26c92ab5bf6ea451b3c54777b5ed0d4f10cf682a 100644
--- a/chrome/browser/media/router/media_sink.h
+++ b/chrome/browser/media/router/media_sink.h
@@ -25,17 +25,11 @@ class MediaSink {
const std::string& name,
const IconType icon_type);
- MediaSink(const MediaSink::Id& sink_id,
- const std::string& name,
- const IconType icon_type,
- bool is_launching);
-
~MediaSink();
const MediaSink::Id& id() const { return sink_id_; }
const std::string& name() const { return name_; }
MediaSink::IconType icon_type() const { return icon_type_; }
- bool is_launching() const { return is_launching_; }
bool Equals(const MediaSink& other) const;
bool Empty() const;
@@ -48,8 +42,6 @@ class MediaSink {
std::string name_;
// The type of icon that corresponds with the MediaSink.
MediaSink::IconType icon_type_;
- // True when the media router is creating a route to this sink.
- bool is_launching_;
};
} // namespace media_router
« no previous file with comments | « chrome/browser/media/router/media_router_type_converters_unittest.cc ('k') | chrome/browser/media/router/media_sink.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698