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

Unified Diff: chrome/common/media_router/media_status.cc

Issue 2932933002: [Media Router] Increment the media's current_time in the WebUI route controller (Closed)
Patch Set: Check that we can increment in onRouteStatusChange_() Created 3 years, 6 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
« no previous file with comments | « chrome/common/media_router/media_status.h ('k') | chrome/common/media_router/mojo/media_status.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/media_router/media_status.cc
diff --git a/chrome/common/media_router/media_status.cc b/chrome/common/media_router/media_status.cc
index f9a4f93d7968a8cf8eb8bb40e1513fcbd749c9c8..461e0c69b50786f18dae5e3b4cf7b5bd2d811131 100644
--- a/chrome/common/media_router/media_status.cc
+++ b/chrome/common/media_router/media_status.cc
@@ -18,7 +18,7 @@ bool MediaStatus::operator==(const MediaStatus& other) const {
return title == other.title && description == other.description &&
can_play_pause == other.can_play_pause && can_mute == other.can_mute &&
can_set_volume == other.can_set_volume && can_seek == other.can_seek &&
- is_paused == other.is_paused && is_muted == other.is_muted &&
+ play_state == other.play_state && is_muted == other.is_muted &&
volume == other.volume && duration == other.duration &&
current_time == other.current_time;
}
« no previous file with comments | « chrome/common/media_router/media_status.h ('k') | chrome/common/media_router/mojo/media_status.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698