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

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

Issue 2306143002: Plumbing for login apps device policy to extensions. (Closed)
Patch Set: Fix Maxim's finding Created 4 years, 1 month 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/extension_service.cc
diff --git a/chrome/browser/extensions/extension_service.cc b/chrome/browser/extensions/extension_service.cc
index 4cecaddab3e02cc9e9697c9d3f7a01d4ab746468..09b7a180656361720c1df8621e08e8add2516521 100644
--- a/chrome/browser/extensions/extension_service.cc
+++ b/chrome/browser/extensions/extension_service.cc
@@ -1461,6 +1461,7 @@ void ExtensionService::AddExtension(const Extension* extension) {
return;
}
+ VLOG(1) << "AddExtension " << extension->name() << ", " << extension->id();
asargent_no_longer_on_chrome 2016/11/14 21:30:25 nit: should this logging be checked in? https://c
achuithb 2016/11/14 21:59:00 This is the only place where we log all the extens
Denis Kuznetsov (DE-MUC) 2016/11/17 18:13:01 Done.
bool is_extension_upgrade = false;
bool is_extension_loaded = false;
const Extension* old = GetInstalledExtension(extension->id());

Powered by Google App Engine
This is Rietveld 408576698