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

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

Issue 1647583002: Fixed a bug in DesktopMediaID 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
#endif
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698