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

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

Issue 7461089: First implementation of web intents table. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Final nit fixes Created 9 years, 5 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/webdata/web_database.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/webdata/web_database.h
diff --git a/chrome/browser/webdata/web_database.h b/chrome/browser/webdata/web_database.h
index ed21e125400b68512ef5438be82094c35c32b96d..890ee7cc8b05a922879055cc31afd11cbd58affe 100644
--- a/chrome/browser/webdata/web_database.h
+++ b/chrome/browser/webdata/web_database.h
@@ -12,6 +12,7 @@
#include "chrome/browser/webdata/logins_table.h"
#include "chrome/browser/webdata/token_service_table.h"
#include "chrome/browser/webdata/web_apps_table.h"
+#include "chrome/browser/webdata/web_intents_table.h"
#include "sql/connection.h"
#include "sql/init_status.h"
#include "sql/meta_table.h"
@@ -38,6 +39,7 @@ class WebDatabase {
virtual LoginsTable* GetLoginsTable();
virtual TokenServiceTable* GetTokenServiceTable();
virtual WebAppsTable* GetWebAppsTable();
+ virtual WebIntentsTable* GetWebIntentsTable();
// Exposed for testing only.
sql::Connection* GetSQLConnection();
@@ -55,6 +57,7 @@ class WebDatabase {
scoped_ptr<LoginsTable> logins_table_;
scoped_ptr<TokenServiceTable> token_service_table_;
scoped_ptr<WebAppsTable> web_apps_table_;
+ scoped_ptr<WebIntentsTable> web_intents_table_;
scoped_ptr<NotificationService> notification_service_;
« no previous file with comments | « no previous file | chrome/browser/webdata/web_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698