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

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

Issue 7601013: Web Intents: Hook up the register intent InfoBar with the WebIntentsRegistry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Test fix. Created 9 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
Index: chrome/browser/intents/web_intent_data.h
diff --git a/chrome/browser/intents/web_intent_data.h b/chrome/browser/intents/web_intent_data.h
index 9d4b006f09062f5003995e6b7a18fdb39a6e0204..bda1d3ae9b75144c35156850780aa543d08e15c6 100644
--- a/chrome/browser/intents/web_intent_data.h
+++ b/chrome/browser/intents/web_intent_data.h
@@ -14,6 +14,10 @@ struct WebIntentData {
GURL service_url; // URL for service invocation.
string16 action; // Name of action provided by service.
string16 type; // MIME type of data accepted by service.
+ string16 title; // The title of the service.
+
+ WebIntentData();
Elliot Glaysher 2011/08/09 22:09:18 add dtor or clang will complain.
James Hawkins 2011/08/10 00:58:38 Done.
+ bool operator==(const WebIntentData& other) const;
};
#endif // CHROME_BROWSER_INTENTS_WEB_INTENT_DATA_H_

Powered by Google App Engine
This is Rietveld 408576698