| Index: third_party/WebKit/Source/platform/loader/fetch/ResourceRequest.h
|
| diff --git a/third_party/WebKit/Source/platform/loader/fetch/ResourceRequest.h b/third_party/WebKit/Source/platform/loader/fetch/ResourceRequest.h
|
| index 155bdd4e1a16bfd4204ed8244007882c09500b8f..2c600249dffa60c40436b0b646429fe442c7c12e 100644
|
| --- a/third_party/WebKit/Source/platform/loader/fetch/ResourceRequest.h
|
| +++ b/third_party/WebKit/Source/platform/loader/fetch/ResourceRequest.h
|
| @@ -316,6 +316,11 @@ class PLATFORM_EXPORT ResourceRequest final {
|
| }
|
| bool isSameDocumentNavigation() const { return m_isSameDocumentNavigation; }
|
|
|
| + void setIsMojoIPCForced(bool isMojoIPCForced) {
|
| + m_isMojoIPCForced = isMojoIPCForced;
|
| + }
|
| + bool isMojoIPCForced() const { return m_isMojoIPCForced; }
|
| +
|
| private:
|
| const CacheControlHeader& cacheControlHeader() const;
|
|
|
| @@ -366,6 +371,7 @@ class PLATFORM_EXPORT ResourceRequest final {
|
| RedirectStatus m_redirectStatus;
|
|
|
| double m_navigationStart = 0;
|
| + bool m_isMojoIPCForced = false;
|
| };
|
|
|
| struct CrossThreadResourceRequestData {
|
|
|