| Index: chrome/browser/webdata/web_intents_table.h
|
| diff --git a/chrome/browser/webdata/web_intents_table.h b/chrome/browser/webdata/web_intents_table.h
|
| index 65fd56b62d6c75e7cc5a9652f69e4471ab4ab79d..1a01f379a2d4f1e74e9c167018fc712181ce9a58 100644
|
| --- a/chrome/browser/webdata/web_intents_table.h
|
| +++ b/chrome/browser/webdata/web_intents_table.h
|
| @@ -10,7 +10,7 @@
|
|
|
| #include "base/basictypes.h"
|
| #include "base/string16.h"
|
| -#include "chrome/browser/intents/web_intent_data.h"
|
| +#include "chrome/browser/intents/web_intent_service_data.h"
|
| #include "chrome/browser/webdata/web_database_table.h"
|
|
|
| class GURL;
|
| @@ -40,17 +40,17 @@ class WebIntentsTable : public WebDatabaseTable {
|
|
|
| // Adds a web intent to the WebIntents table. If intent already exists,
|
| // replaces it.
|
| - bool SetWebIntent(const WebIntentData& intent);
|
| + bool SetWebIntent(const WebIntentServiceData& intent);
|
|
|
| // Retrieve all intents from WebIntents table that match |action|.
|
| bool GetWebIntents(const string16& action,
|
| - std::vector<WebIntentData>* intents);
|
| + std::vector<WebIntentServiceData>* intents);
|
|
|
| // Retrieve all intents from WebIntents table.
|
| - bool GetAllWebIntents(std::vector<WebIntentData>* intents);
|
| + bool GetAllWebIntents(std::vector<WebIntentServiceData>* intents);
|
|
|
| // Removes intent from WebIntents table - must match all parameters exactly.
|
| - bool RemoveWebIntent(const WebIntentData& intent);
|
| + bool RemoveWebIntent(const WebIntentServiceData& intent);
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(WebIntentsTable);
|
|
|