Rename httpreferrer to httpReferrer, useragent to userAgent.
This commit is contained in:
parent
bf1765f941
commit
488801e244
2 changed files with 4 additions and 4 deletions
|
@ -430,12 +430,12 @@ void WebContents::LoadURL(const GURL& url, const mate::Dictionary& options) {
|
|||
content::NavigationController::LoadURLParams params(url);
|
||||
|
||||
GURL http_referrer;
|
||||
if (options.Get("httpreferrer", &http_referrer))
|
||||
if (options.Get("httpReferrer", &http_referrer))
|
||||
params.referrer = content::Referrer(http_referrer.GetAsReferrer(),
|
||||
blink::WebReferrerPolicyDefault);
|
||||
|
||||
std::string user_agent;
|
||||
if (options.Get("useragent", &user_agent))
|
||||
if (options.Get("userAgent", &user_agent))
|
||||
SetUserAgent(user_agent);
|
||||
|
||||
params.transition_type = ui::PAGE_TRANSITION_TYPED;
|
||||
|
|
|
@ -782,8 +782,8 @@ Emitted when the WebContents is destroyed.
|
|||
|
||||
* `url` URL
|
||||
* `options` URL
|
||||
* `httpreferrer` String - A HTTP Referer url
|
||||
* `useragent` String - A user agent originating the request
|
||||
* `httpReferrer` String - A HTTP Referer url
|
||||
* `userAgent` String - A user agent originating the request
|
||||
|
||||
Loads the `url` in the window, the `url` must contains the protocol prefix,
|
||||
e.g. the `http://` or `file://`.
|
||||
|
|
Loading…
Reference in a new issue