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

Unified Diff: chrome/browser/performance_monitor/performance_monitor.cc

Issue 10683003: Moved CrxInstaller and CrxInstallerError into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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/performance_monitor/performance_monitor.cc
diff --git a/chrome/browser/performance_monitor/performance_monitor.cc b/chrome/browser/performance_monitor/performance_monitor.cc
index 16d15170b31652d9e367782d0e606c33c81162de..9b12cfafb01ccbf1cde4f95c6226ce43e2874091 100644
--- a/chrome/browser/performance_monitor/performance_monitor.cc
+++ b/chrome/browser/performance_monitor/performance_monitor.cc
@@ -184,8 +184,8 @@ void PerformanceMonitor::Observe(int type,
break;
}
case chrome::NOTIFICATION_CRX_INSTALLER_DONE: {
- const CrxInstaller* installer =
- content::Source<CrxInstaller>(source).ptr();
+ const extensions::CrxInstaller* installer =
+ content::Source<extensions::CrxInstaller>(source).ptr();
// Check if the reason for the install was due to an extension update.
if (installer->install_cause() != extension_misc::INSTALL_CAUSE_UPDATE)

Powered by Google App Engine
This is Rietveld 408576698