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

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

Issue 10388239: Make NetworkProfileBubble not use BrowserList::GetLastActive() as much. Instead pass it a profile a… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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/extensions/bundle_installer.cc
===================================================================
--- chrome/browser/extensions/bundle_installer.cc (revision 138102)
+++ chrome/browser/extensions/bundle_installer.cc (working copy)
@@ -332,13 +332,13 @@
ShowInstalledBubbleIfDone();
}
-void BundleInstaller::OnBrowserAdded(const Browser* browser) {}
+void BundleInstaller::OnBrowserAdded(Browser* browser) {}
-void BundleInstaller::OnBrowserRemoved(const Browser* browser) {
+void BundleInstaller::OnBrowserRemoved(Browser* browser) {
if (browser_ == browser)
browser_ = NULL;
}
-void BundleInstaller::OnBrowserSetLastActive(const Browser* browser) {}
+void BundleInstaller::OnBrowserSetLastActive(Browser* browser) {}
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698