| 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 07230132f3659719d4a3959a27a10b48ff4a9b8b..ff648dc54f5941a13b4b95676d00e4ed9ddc3074 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.h
|
| +++ b/third_party/WebKit/Source/core/dom/Document.h
|
| @@ -1312,6 +1312,7 @@
|
| // non-secure passwords fields are no longer visible.
|
| void incrementPasswordCount();
|
| void decrementPasswordCount();
|
| + unsigned passwordCount() const;
|
|
|
| protected:
|
| Document(const DocumentInit&, DocumentClassFlags = DefaultDocumentClass);
|
| @@ -1423,9 +1424,6 @@
|
| }
|
|
|
| const OriginAccessEntry& accessEntryFromURL();
|
| -
|
| - void sendSensitiveInputVisibility();
|
| - void sendSensitiveInputVisibilityInternal();
|
|
|
| DocumentLifecycle m_lifecycle;
|
|
|
| @@ -1667,8 +1665,6 @@
|
| Member<PropertyRegistry> m_propertyRegistry;
|
|
|
| unsigned m_passwordCount;
|
| -
|
| - TaskHandle m_sensitiveInputVisibilityTask;
|
| };
|
|
|
| extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Document>;
|
|
|