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

Unified Diff: chrome/browser/automation/testing_automation_provider.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/automation/testing_automation_provider.cc
===================================================================
--- chrome/browser/automation/testing_automation_provider.cc (revision 138102)
+++ chrome/browser/automation/testing_automation_provider.cc (working copy)
@@ -276,10 +276,10 @@
return IPC::Channel::MODE_CLIENT;
}
-void TestingAutomationProvider::OnBrowserAdded(const Browser* browser) {
+void TestingAutomationProvider::OnBrowserAdded(Browser* browser) {
}
-void TestingAutomationProvider::OnBrowserRemoved(const Browser* browser) {
+void TestingAutomationProvider::OnBrowserRemoved(Browser* browser) {
#if !defined(OS_CHROMEOS) && !defined(OS_MACOSX)
// For backwards compatibility with the testing automation interface, we
// want the automation provider (and hence the process) to go away when the

Powered by Google App Engine
This is Rietveld 408576698