Chromium Code Reviews| Index: third_party/WebKit/Source/core/dom/Document.h |
| diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h |
| index e864d3f2279a5d6818698db822f95d7515453859..5160dc856a98a3c6804d608a78e7ddb4e9f95523 100644 |
| --- a/third_party/WebKit/Source/core/dom/Document.h |
| +++ b/third_party/WebKit/Source/core/dom/Document.h |
| @@ -1048,6 +1048,9 @@ public: |
| WebTaskRunner* loadingTaskRunner() const; |
| WebTaskRunner* timerTaskRunner() const; |
| + void enforceStrictMixedContentChecking(); |
| + bool shouldEnforceStrictMixedContentChecking() const { return m_strictMixedContentCheckingEnforced; } |
|
alexmos
2015/12/15 17:49:17
This isn't needed anymore, right? A Document can
estark
2015/12/15 21:28:50
Done.
|
| + |
| protected: |
| Document(const DocumentInit&, DocumentClassFlags = DefaultDocumentClass); |
| @@ -1391,6 +1394,8 @@ private: |
| PersistentWillBeMember<CanvasFontCache> m_canvasFontCache; |
| int m_nodeCount; |
| + |
| + bool m_strictMixedContentCheckingEnforced; |
|
alexmos
2015/12/15 17:49:17
ditto
estark
2015/12/15 21:28:50
Done.
|
| }; |
| extern template class CORE_EXTERN_TEMPLATE_EXPORT WillBeHeapSupplement<Document>; |