Index: chrome/browser/intents/default_web_intent_service.cc |
diff --git a/chrome/browser/intents/default_web_intent_service.cc b/chrome/browser/intents/default_web_intent_service.cc |
index ba887d1dfa3f4dbbbbc6ec95a776aa8211e2cabe..edf5e48e06dbd620aba0ef4acd36574213438415 100644 |
--- a/chrome/browser/intents/default_web_intent_service.cc |
+++ b/chrome/browser/intents/default_web_intent_service.cc |
@@ -9,6 +9,12 @@ DefaultWebIntentService::DefaultWebIntentService() |
user_date(-1), |
suppression(0) {} |
+DefaultWebIntentService::DefaultWebIntentService(const string16& srv_action, |
Greg Billock
2012/08/10 17:01:32
how about putting one arg per line
Steve McKay
2012/08/10 17:31:42
Done.
|
+ const string16& srv_type, const std::string& srv_service_url) |
+ : action(srv_action), type(srv_type), |
+ url_pattern(URLPattern::SCHEME_ALL, URLPattern::kAllUrlsPattern), |
+ user_date(-1), suppression(0), service_url(srv_service_url) {} |
+ |
DefaultWebIntentService::~DefaultWebIntentService() {} |
bool DefaultWebIntentService::operator==( |