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

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

Issue 9104018: Modify schema to include defaulting information. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/webdata/web_intents_table.cc
diff --git a/chrome/browser/webdata/web_intents_table.cc b/chrome/browser/webdata/web_intents_table.cc
index b717ba4a611425347c7b8aca828631e12e145ba9..869c7e65f33c46f7b3a51cc40af64d54dc7d33ad 100644
--- a/chrome/browser/webdata/web_intents_table.cc
+++ b/chrome/browser/webdata/web_intents_table.cc
@@ -55,8 +55,13 @@ bool WebIntentsTable::Init() {
"service_url LONGVARCHAR,"
"action VARCHAR,"
"type VARCHAR,"
- "title VARCHAR,"
+ "title LONGVARCHAR,"
"disposition VARCHAR,"
+ "default_action VARCHAR,"
James Hawkins 2012/01/30 20:50:08 These don't belong in the web_intents table. Defa
+ "default_type VARCHAR,"
+ "default_url LONGVARCHAR,"
+ "default_user_date INTEGER,"
+ "default_suppression INTEGER,"
"UNIQUE (service_url, action, type))")) {
return false;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698