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

Unified Diff: content/public/browser/desktop_media_id.cc

Issue 1622733002: Add CombinedDesktopMediaList class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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: content/public/browser/desktop_media_id.cc
diff --git a/content/public/browser/desktop_media_id.cc b/content/public/browser/desktop_media_id.cc
index 63c2cbf3c61f6a74824511d2544e4bca809c535e..8e74dcc866c3f4ed41addea3fa3b27848a3e2782 100644
--- a/content/public/browser/desktop_media_id.cc
+++ b/content/public/browser/desktop_media_id.cc
@@ -102,7 +102,7 @@ bool DesktopMediaID::operator<(const DesktopMediaID& other) const {
std::tie(other.type, other.id, other.aura_id, other.web_contents_id);
#else
return std::tie(type, id, web_contents_id) <
- std::tie(other.type, other.id, web_contents_id);
+ std::tie(other.type, other.id, other.web_contents_id);
Sergey Ulanov 2016/01/27 00:36:31 this is not related to this CL. I don't mind keepi
GeorgeZ 2016/01/27 22:57:17 Revert this change and put it into another CL.
#endif
}
« chrome/browser/media/desktop_media_list_base.h ('K') | « chrome/chrome_tests_unit.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698