OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/intents/web_intent_data.h" | 5 #include "chrome/browser/intents/web_intent_data.h" |
6 | 6 |
7 WebIntentData::WebIntentData() {} | 7 WebIntentData::WebIntentData() {} |
8 | 8 |
9 WebIntentData::~WebIntentData() {} | 9 WebIntentData::~WebIntentData() {} |
10 | 10 |
11 bool WebIntentData::operator==(const WebIntentData& other) const { | 11 bool WebIntentData::operator==(const WebIntentData& other) const { |
12 return (service_url == other.service_url && | 12 return (service_url == other.service_url && |
13 action == other.action && | 13 action == other.action && |
14 type == other.type); | 14 type == other.type && |
15 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.
| |
15 } | 16 } |
OLD | NEW |