| 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..b920e7ceb84ca3b66352b52224150ef9be9f024b 100644
|
| --- a/chrome/browser/intents/web_intent_data.h
|
| +++ b/chrome/browser/intents/web_intent_data.h
|
| @@ -11,9 +11,15 @@
|
|
|
| // Describes the relevant elements of a WebIntent.
|
| struct WebIntentData {
|
| + WebIntentData();
|
| + ~WebIntentData();
|
| +
|
| + bool operator==(const WebIntentData& other) const;
|
| +
|
| 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.
|
| };
|
|
|
| #endif // CHROME_BROWSER_INTENTS_WEB_INTENT_DATA_H_
|
|
|