| Index: ios/web/public/web_state/ui/crw_web_delegate.h
|
| diff --git a/ios/web/public/web_state/ui/crw_web_delegate.h b/ios/web/public/web_state/ui/crw_web_delegate.h
|
| index eb6a81c8835b33b9e82b98d89290321781126210..2ff8368cff3555242bfd43ad8044f9137d78e569 100644
|
| --- a/ios/web/public/web_state/ui/crw_web_delegate.h
|
| +++ b/ios/web/public/web_state/ui/crw_web_delegate.h
|
| @@ -29,7 +29,10 @@ class GURL;
|
| // Called when an external app needs to be opened, it also passes |linkClicked|
|
| // to track if this call was a result of user action or not. Returns YES iff
|
| // |URL| is launched in an external app.
|
| -- (BOOL)openExternalURL:(const GURL&)URL linkClicked:(BOOL)linkClicked;
|
| +// |sourceURL| is the original URL that triggered the navigation to |URL|.
|
| +- (BOOL)openExternalURL:(const GURL&)URL
|
| + sourceURL:(const GURL&)sourceURL
|
| + linkClicked:(BOOL)linkClicked;
|
|
|
| // This method is invoked whenever the system believes the URL is about to
|
| // change, or immediately after any unexpected change of the URL, prior to
|
|
|