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

Unified Diff: chrome/browser/automation/automation_tab_helper_unittest.cc

Issue 10805051: Add RenderViewHost* to DidStartLoading and DidStopLoading in (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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
Index: chrome/browser/automation/automation_tab_helper_unittest.cc
===================================================================
--- chrome/browser/automation/automation_tab_helper_unittest.cc (revision 147723)
+++ chrome/browser/automation/automation_tab_helper_unittest.cc (working copy)
@@ -31,11 +31,11 @@
// These are here so that we don't have to add each test as a
// |AutomationTabHelper| friend.
void StartLoading() {
- tab_helper()->DidStartLoading();
+ tab_helper()->DidStartLoading(NULL);
}
void StopLoading() {
- tab_helper()->DidStopLoading();
+ tab_helper()->DidStopLoading(NULL);
}
void TabContentsDestroyed() {
« no previous file with comments | « chrome/browser/automation/automation_tab_helper.cc ('k') | chrome/browser/captive_portal/captive_portal_tab_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698