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.
|
} |