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

Unified Diff: chrome/browser/ui/webui/password_manager_internals/password_manager_internals_ui.cc

Issue 1008913002: Remove RenderViewHost parameter from WebContentsObserver::Did{Start|Stop}Loading. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 9 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/ui/webui/password_manager_internals/password_manager_internals_ui.cc
diff --git a/chrome/browser/ui/webui/password_manager_internals/password_manager_internals_ui.cc b/chrome/browser/ui/webui/password_manager_internals/password_manager_internals_ui.cc
index d4d88512a4bc5bffe2aca31570fb9bb1f505025c..5ccf6dbb0981e91967cac5778fe5ef506109c73e 100644
--- a/chrome/browser/ui/webui/password_manager_internals/password_manager_internals_ui.cc
+++ b/chrome/browser/ui/webui/password_manager_internals/password_manager_internals_ui.cc
@@ -49,15 +49,13 @@ PasswordManagerInternalsUI::~PasswordManagerInternalsUI() {
UnregisterFromLoggingServiceIfNecessary();
}
-void PasswordManagerInternalsUI::DidStartLoading(
- content::RenderViewHost* /* render_view_host */) {
+void PasswordManagerInternalsUI::DidStartLoading() {
// In case this tab is being reloaded, unregister itself until the reload is
// completed.
UnregisterFromLoggingServiceIfNecessary();
}
-void PasswordManagerInternalsUI::DidStopLoading(
- content::RenderViewHost* /* render_view_host */) {
+void PasswordManagerInternalsUI::DidStopLoading() {
DCHECK(!registered_with_logging_service_);
PasswordManagerInternalsService* service =
PasswordManagerInternalsServiceFactory::GetForBrowserContext(

Powered by Google App Engine
This is Rietveld 408576698