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

Unified Diff: trunk/src/chrome/browser/extensions/activity_log/api_actions.cc

Issue 16756004: Revert 205059 "We were seeing ActivityLog memory leaks and assor..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: 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: trunk/src/chrome/browser/extensions/activity_log/api_actions.cc
===================================================================
--- trunk/src/chrome/browser/extensions/activity_log/api_actions.cc (revision 205306)
+++ trunk/src/chrome/browser/extensions/activity_log/api_actions.cc (working copy)
@@ -186,7 +186,7 @@
arraysize(kTableContentFields));
}
-bool APIAction::Record(sql::Connection* db) {
+void APIAction::Record(sql::Connection* db) {
std::string sql_str = "INSERT INTO " + std::string(kTableName)
+ " (extension_id, time, api_type, api_call, args, extra) VALUES"
" (?,?,?,?,?,?)";
@@ -198,12 +198,8 @@
statement.BindString(3, APINameMap::GetInstance()->ApiToShortname(api_call_));
statement.BindString(4, args_);
statement.BindString(5, extra_);
- if (!statement.Run()) {
+ if (!statement.Run())
LOG(ERROR) << "Activity log database I/O failed: " << sql_str;
- statement.Clear();
- return false;
- }
- return true;
}
// static

Powered by Google App Engine
This is Rietveld 408576698