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

Unified Diff: chrome/browser/intents/web_intent_data.cc

Issue 7624012: First pass on intents options UI. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 4 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/intents/web_intent_data.cc
diff --git a/chrome/browser/intents/web_intent_data.cc b/chrome/browser/intents/web_intent_data.cc
index 3f7339f16ea73f75f7b516e27711591c48032433..29ef6a8e7455879a3ac394cf2f3a50a1cc36b081 100644
--- a/chrome/browser/intents/web_intent_data.cc
+++ b/chrome/browser/intents/web_intent_data.cc
@@ -11,5 +11,6 @@ WebIntentData::~WebIntentData() {}
bool WebIntentData::operator==(const WebIntentData& other) const {
return (service_url == other.service_url &&
action == other.action &&
- type == other.type);
+ type == other.type &&
+ title == other.title);
James Hawkins 2011/08/17 03:18:39 There will be a merge conflict with groby's CL.
Greg Billock 2011/08/17 18:49:50 If she already fixed the title bug, I'll merge it.
}

Powered by Google App Engine
This is Rietveld 408576698