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

Unified Diff: chrome/browser/webdata/web_intents_table.h

Issue 7930002: Rename WebIntentData for backend storage to WebIntentServiceData. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix class/struct decl Created 9 years, 3 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 | « chrome/browser/webdata/web_data_service_unittest.cc ('k') | chrome/browser/webdata/web_intents_table.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « chrome/browser/webdata/web_data_service_unittest.cc ('k') | chrome/browser/webdata/web_intents_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698