diff options
Diffstat (limited to 'chrome/browser/history/text_database.cc')
-rw-r--r-- | chrome/browser/history/text_database.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/history/text_database.cc b/chrome/browser/history/text_database.cc index ef1d706..482db21 100644 --- a/chrome/browser/history/text_database.cc +++ b/chrome/browser/history/text_database.cc @@ -228,7 +228,7 @@ bool TextDatabase::AddPageData(Time time, // Add to the pages table. SQLITE_UNIQUE_STATEMENT(add_to_pages, *statement_cache_, - "INSERT INTO pages(url,title,body)VALUES(?,?,?)"); + "INSERT INTO pages (url, title, body) VALUES (?,?,?)"); if (!add_to_pages.is_valid()) return false; add_to_pages->bind_string(0, url); @@ -243,7 +243,7 @@ bool TextDatabase::AddPageData(Time time, // Add to the info table with the same rowid. SQLITE_UNIQUE_STATEMENT(add_to_info, *statement_cache_, - "INSERT INTO info(rowid,time) VALUES(?,?)"); + "INSERT INTO info (rowid, time) VALUES (?,?)"); if (!add_to_info.is_valid()) return false; add_to_info->bind_int64(0, rowid); |