Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Unified Diff: third_party/WebKit/Source/core/dom/Document.h

Issue 2838603002: Added [SecureContext] to the subtle attribute (Closed)
Patch Set: Magic test starts doing differnt things out of the blue. Need to handle this properly. Avada Kedavr… Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 8c9dd3a9a1e9935ca863906e409475fbc1d9e5c5..315cdd08831cbe2caaa0348ebba5eee718ebd340 100644
--- a/third_party/WebKit/Source/core/dom/Document.h
+++ b/third_party/WebKit/Source/core/dom/Document.h
@@ -1268,11 +1268,8 @@ class CORE_EXPORT Document : public ContainerNode,
NthIndexCache* GetNthIndexCache() const { return nth_index_cache_; }
- bool IsSecureContext(
- String& error_message,
- const SecureContextCheck = kStandardSecureContextCheck) const override;
- bool IsSecureContext(
- const SecureContextCheck = kStandardSecureContextCheck) const override;
+ bool IsSecureContext(String& error_message) const override;
+ bool IsSecureContext() const override;
ClientHintsPreferences& GetClientHintsPreferences() {
return client_hints_preferences_;
@@ -1395,8 +1392,7 @@ class CORE_EXPORT Document : public ContainerNode,
bool ChildTypeAllowed(NodeType) const final;
Node* cloneNode(bool deep, ExceptionState&) final;
void CloneDataFromDocument(const Document&);
- bool IsSecureContextImpl(
- const SecureContextCheck privilige_context_check) const;
+ bool IsSecureContextImpl() const;
ShadowCascadeOrder shadow_cascade_order_ = kShadowCascadeNone;

Powered by Google App Engine
This is Rietveld 408576698