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

Unified Diff: chrome/browser/history/thumbnail_database.h

Issue 9005036: [sql] WARN_UNUSED_RESULT on Execute(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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
Index: chrome/browser/history/thumbnail_database.h
diff --git a/chrome/browser/history/thumbnail_database.h b/chrome/browser/history/thumbnail_database.h
index 0611e53339fa7c4a6903038951a372238922e614..fff1fc5b180d4ad09bd4964a23664dc9251d24b9 100644
--- a/chrome/browser/history/thumbnail_database.h
+++ b/chrome/browser/history/thumbnail_database.h
@@ -267,7 +267,7 @@ class ThumbnailDatabase {
// initialization after the table is created. This is a separate function
// because it is used by SwapFaviconTables to create an index over the
// newly-renamed favicons table (formerly the temporary table with no index).
- void InitFaviconsIndex();
+ bool InitFaviconsIndex();
// Creates the icon_map table, return true if the table already exists or was
// successfully created.
@@ -278,7 +278,7 @@ class ThumbnailDatabase {
// because it is used by CommitTemporaryIconMappingTable to create an index
// over the newly-renamed icon_mapping table (formerly the temporary table
// with no index).
- void InitIconMappingIndex();
+ bool InitIconMappingIndex();
// Adds a mapping between the given page_url and icon_id; The mapping will be
// added to temp_icon_mapping table if is_temporary is true.

Powered by Google App Engine
This is Rietveld 408576698