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

Unified Diff: chrome/browser/intents/default_web_intent_service.h

Issue 10855065: Add a constructor to DefaultWebIntentServices that takes only the "interesting" args. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Respond to review comments. Created 8 years, 4 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 | « no previous file | chrome/browser/intents/default_web_intent_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/intents/default_web_intent_service.h
diff --git a/chrome/browser/intents/default_web_intent_service.h b/chrome/browser/intents/default_web_intent_service.h
index 5713b83fda7680273667a713ad12c0c44c30a809..aff41ccacba62dbd7586db02e89120fc841fd84e 100644
--- a/chrome/browser/intents/default_web_intent_service.h
+++ b/chrome/browser/intents/default_web_intent_service.h
@@ -22,6 +22,7 @@
struct DefaultWebIntentService {
string16 action;
string16 type;
+
URLPattern url_pattern;
// |user_date| holds the offset time when a user set the default.
@@ -35,6 +36,10 @@ struct DefaultWebIntentService {
std::string service_url;
DefaultWebIntentService();
+ DefaultWebIntentService(
+ const string16& srv_action,
+ const string16& srv_type,
+ const std::string& srv_service_url);
~DefaultWebIntentService();
bool operator==(const DefaultWebIntentService& other) const;
« no previous file with comments | « no previous file | chrome/browser/intents/default_web_intent_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698