diff options
Diffstat (limited to 'chrome/browser/extensions/api/identity/web_auth_flow.cc')
-rw-r--r-- | chrome/browser/extensions/api/identity/web_auth_flow.cc | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/chrome/browser/extensions/api/identity/web_auth_flow.cc b/chrome/browser/extensions/api/identity/web_auth_flow.cc index eb61068..0ade81b 100644 --- a/chrome/browser/extensions/api/identity/web_auth_flow.cc +++ b/chrome/browser/extensions/api/identity/web_auth_flow.cc @@ -222,13 +222,14 @@ void WebAuthFlow::DidStartProvisionalLoadForFrame( BeforeUrlLoaded(validated_url); } -void WebAuthFlow::DidFailProvisionalLoad(int64 frame_id, - const string16& frame_unique_name, - bool is_main_frame, - const GURL& validated_url, - int error_code, - const string16& error_description, - RenderViewHost* render_view_host) { +void WebAuthFlow::DidFailProvisionalLoad( + int64 frame_id, + const base::string16& frame_unique_name, + bool is_main_frame, + const GURL& validated_url, + int error_code, + const base::string16& error_description, + RenderViewHost* render_view_host) { if (delegate_) delegate_->OnAuthFlowFailure(LOAD_FAILED); } |