Chromium Code Reviews| Index: webkit/glue/web_intent_service_data.cc |
| diff --git a/webkit/glue/web_intent_service_data.cc b/webkit/glue/web_intent_service_data.cc |
| index ef92520a79e1951e10d21a9c96bde11392de8165..67849db0e02dded8c0e5aaa60d68c9ad941dbd81 100644 |
| --- a/webkit/glue/web_intent_service_data.cc |
| +++ b/webkit/glue/web_intent_service_data.cc |
| @@ -14,11 +14,11 @@ WebIntentServiceData::WebIntentServiceData() |
| WebIntentServiceData::~WebIntentServiceData() {} |
| bool WebIntentServiceData::operator==(const WebIntentServiceData& other) const { |
| - return (service_url == other.service_url && |
| - action == other.action && |
| - type == other.type && |
| - title == other.title && |
| - disposition == other.disposition); |
| + return service_url == other.service_url && |
| + action == other.action && |
|
tony
2011/09/23 22:39:13
Nit: These should probably be indented 4 spaces fr
groby-ooo-7-16
2011/09/23 22:48:54
According to style guideline, it's only "indent 4"
|
| + type == other.type && |
| + title == other.title && |
| + disposition == other.disposition; |
| } |
| std::ostream& operator<<(::std::ostream& os, |