Fix code style formatting
- Fix code style formatting to be <= 80 lines - Add default parameter for urlOptions to loadUrl, reload and reloadIgnoringCache functions to be compatible with old API.
This commit is contained in:
parent
e6830e9ac8
commit
747698fe9b
2 changed files with 10 additions and 2 deletions
|
@ -289,10 +289,11 @@ bool WebContents::IsAlive() const {
|
|||
void WebContents::LoadURL(const GURL& url, const mate::Dictionary& options) {
|
||||
content::NavigationController::LoadURLParams params(url);
|
||||
|
||||
base::string16 http_referrer_;
|
||||
base::string16 http_referrer;
|
||||
|
||||
if (options.Get("httpreferrer", &http_referrer_))
|
||||
params.referrer = content::Referrer(GURL(http_referrer_).GetAsReferrer(), blink::WebReferrerPolicyDefault);
|
||||
params.referrer = content::Referrer(GURL(http_referrer_).GetAsReferrer(),
|
||||
blink::WebReferrerPolicyDefault);
|
||||
|
||||
params.transition_type = content::PAGE_TRANSITION_TYPED;
|
||||
params.override_user_agent = content::NavigationController::UA_OVERRIDE_TRUE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue