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

Unified Diff: chrome/browser/extensions/activity_log/activity_log.h

Issue 16510002: Better ActivityLog error handling (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reinstating the command line Created 7 years, 6 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
Index: chrome/browser/extensions/activity_log/activity_log.h
diff --git a/chrome/browser/extensions/activity_log/activity_log.h b/chrome/browser/extensions/activity_log/activity_log.h
index 763f0d28e64ce592f69c5717b90120027ab16ef1..2aa84bb73bee02e3295580e149e0faa12dd720ce 100644
--- a/chrome/browser/extensions/activity_log/activity_log.h
+++ b/chrome/browser/extensions/activity_log/activity_log.h
@@ -124,9 +124,6 @@ class ActivityLog : public BrowserContextKeyedService,
explicit ActivityLog(Profile* profile);
virtual ~ActivityLog();
- // Reset the database in case of persistent catastrophic errors.
- void DatabaseErrorCallback(int error, sql::Statement* stmt);
-
// We log callbacks and API calls very similarly, so we handle them the same
// way internally.
void LogAPIActionInternal(
@@ -144,9 +141,6 @@ class ActivityLog : public BrowserContextKeyedService,
int32 page_id,
const GURL& on_url) OVERRIDE;
- // The callback when initializing the database.
- void OnDBInitComplete();
-
// The Schedule methods dispatch the calls to the database on a
// separate thread. We dispatch to the UI thread if the DB thread doesn't
// exist, which should only happen in tests where there is no DB thread.

Powered by Google App Engine
This is Rietveld 408576698