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

Unified Diff: trunk/src/chrome/browser/extensions/activity_log/blocked_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/blocked_actions.cc
===================================================================
--- trunk/src/chrome/browser/extensions/activity_log/blocked_actions.cc (revision 205306)
+++ trunk/src/chrome/browser/extensions/activity_log/blocked_actions.cc (working copy)
@@ -95,7 +95,7 @@
arraysize(kTableContentFields));
}
-bool BlockedAction::Record(sql::Connection* db) {
+void BlockedAction::Record(sql::Connection* db) {
std::string sql_str = "INSERT INTO " + std::string(kTableName)
+ " (extension_id, time, api_call, args, reason, extra)"
" VALUES (?,?,?,?,?,?)";
@@ -107,13 +107,8 @@
statement.BindString(3, args_);
statement.BindInt(4, static_cast<int>(reason_));
statement.BindString(5, extra_);
- if (!statement.Run()) {
+ if (!statement.Run())
LOG(ERROR) << "Activity log database I/O failed: " << sql_str;
- statement.Clear();
- return false;
- } else {
- return true;
- }
}
std::string BlockedAction::PrintForDebug() {

Powered by Google App Engine
This is Rietveld 408576698