| Index: third_party/WebKit/Source/core/dom/SecurityContext.h
|
| diff --git a/third_party/WebKit/Source/core/dom/SecurityContext.h b/third_party/WebKit/Source/core/dom/SecurityContext.h
|
| index 1693b3578fb3e0b31fb047b21142dc2b10e35643..1663bd344d5856675ed29d4dca4bbf52e5ae6fcb 100644
|
| --- a/third_party/WebKit/Source/core/dom/SecurityContext.h
|
| +++ b/third_party/WebKit/Source/core/dom/SecurityContext.h
|
| @@ -71,7 +71,7 @@ public:
|
| bool isSandboxed(SandboxFlags mask) const { return m_sandboxFlags & mask; }
|
| void enforceSandboxFlags(SandboxFlags mask);
|
|
|
| - void setHostedInReservedIPRange() { m_hostedInReservedIPRange = true; }
|
| + void setHostedInReservedIPRange(bool value) { m_hostedInReservedIPRange = value; }
|
| bool isHostedInReservedIPRange() const { return m_hostedInReservedIPRange; }
|
|
|
| void setInsecureRequestsPolicy(InsecureRequestsPolicy policy) { m_insecureRequestsPolicy = policy; }
|
|
|