summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/api/identity
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/api/identity')
-rw-r--r--chrome/browser/extensions/api/identity/web_auth_flow.cc2
-rw-r--r--chrome/browser/extensions/api/identity/web_auth_flow.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/api/identity/web_auth_flow.cc b/chrome/browser/extensions/api/identity/web_auth_flow.cc
index 4c7d9fa..a1573a0 100644
--- a/chrome/browser/extensions/api/identity/web_auth_flow.cc
+++ b/chrome/browser/extensions/api/identity/web_auth_flow.cc
@@ -231,7 +231,7 @@ void WebAuthFlow::DidFailProvisionalLoad(
delegate_->OnAuthFlowFailure(LOAD_FAILED);
}
-void WebAuthFlow::DidStopLoading(RenderViewHost* render_view_host) {
+void WebAuthFlow::DidStopLoading() {
AfterUrlLoaded();
}
diff --git a/chrome/browser/extensions/api/identity/web_auth_flow.h b/chrome/browser/extensions/api/identity/web_auth_flow.h
index cc3ac2a..81fbd53 100644
--- a/chrome/browser/extensions/api/identity/web_auth_flow.h
+++ b/chrome/browser/extensions/api/identity/web_auth_flow.h
@@ -101,7 +101,7 @@ class WebAuthFlow : public content::NotificationObserver,
const content::NotificationDetails& details) override;
// WebContentsObserver implementation.
- void DidStopLoading(content::RenderViewHost* render_view_host) override;
+ void DidStopLoading() override;
void DidNavigateMainFrame(
const content::LoadCommittedDetails& details,
const content::FrameNavigateParams& params) override;