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

Unified Diff: webkit/glue/web_intent_service_data.cc

Issue 8028006: Fixed nits from move of web_intent_service_data.* to webkit/glue (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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 | « webkit/glue/web_intent_service_data.h ('k') | webkit/glue/webkit_glue.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « webkit/glue/web_intent_service_data.h ('k') | webkit/glue/webkit_glue.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698