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

Unified Diff: chrome/browser/extensions/extension_service.cc

Issue 19647011: Remove spammy logging in ExtensionService::SetBeingReloaded(). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_service.cc
===================================================================
--- chrome/browser/extensions/extension_service.cc (revision 213035)
+++ chrome/browser/extensions/extension_service.cc (working copy)
@@ -2896,19 +2896,11 @@
}
void ExtensionService::SetBeingReloaded(const std::string& extension_id,
- bool isBeingReloaded) {
- LOG(INFO) << "****** " << __FUNCTION__;
- LOG(INFO) << "****** " << __FUNCTION__ << " extension_id is: "
- << extension_id << " and isBeingReloaded is " << isBeingReloaded;
- LOG(INFO) << "****** " << __FUNCTION__ << " Set size is "
- << extensions_being_reloaded_.size();
- if (isBeingReloaded) {
+ bool isBeingReloaded) {
+ if (isBeingReloaded)
extensions_being_reloaded_.insert(extension_id);
- LOG(INFO) << "****** " << __FUNCTION__ << " insert succeeded.";
- } else {
+ else
extensions_being_reloaded_.erase(extension_id);
- LOG(INFO) << "****** " << __FUNCTION__ << " erase succeeded.";
- }
}
bool ExtensionService::HasUsedWebRequest(const Extension* extension) const {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698