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

Unified Diff: third_party/WebKit/Source/core/html/forms/PasswordInputType.cpp

Issue 2468833002: Count visible password fields on a page (Closed)
Patch Set: dcheng comments Created 4 years, 1 month 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/html/forms/PasswordInputType.cpp
diff --git a/third_party/WebKit/Source/core/html/forms/PasswordInputType.cpp b/third_party/WebKit/Source/core/html/forms/PasswordInputType.cpp
index 2909d1d4ec4c30a54271c51860fddfe85f6dfeaa..662db24915d98ea805fb867459fdc4fda593742a 100644
--- a/third_party/WebKit/Source/core/html/forms/PasswordInputType.cpp
+++ b/third_party/WebKit/Source/core/html/forms/PasswordInputType.cpp
@@ -36,6 +36,7 @@
#include "core/frame/LocalFrame.h"
#include "core/html/HTMLInputElement.h"
#include "core/html/forms/FormController.h"
+#include "core/layout/LayoutTextControlSingleLine.h"
#include "public/platform/InterfaceProvider.h"
#include "public/platform/modules/sensitive_input_visibility/sensitive_input_visibility_service.mojom-blink.h"
#include "wtf/Assertions.h"
@@ -43,6 +44,58 @@
namespace blink {
+namespace {
+
+class PasswordLayoutObject : public LayoutTextControlSingleLine {
+ public:
+ explicit PasswordLayoutObject(HTMLInputElement* element)
+ : LayoutTextControlSingleLine(element) {
+ Document& document = element->document();
+ DCHECK(document.frame());
+ if (document.isSecureContext()) {
+ // The browser process only cares about passwords on pages where the
+ // top-level URL is not secure. Secure contexts must have a top-level
+ // URL that is secure, so there is no need to send notifications for
+ // password fields in secure contexts.
+ return;
+ }
+
+ document.incrementPasswordCount();
+ if (document.passwordCount() > 1) {
+ // Only send a message on the first visible password field; the
+ // browser process doesn't care about the presence of additional
+ // password fields beyond that.
+ return;
+ }
+ mojom::blink::SensitiveInputVisibilityServicePtr sensitiveInputServicePtr;
+ document.frame()->interfaceProvider()->getInterface(
+ mojo::GetProxy(&sensitiveInputServicePtr));
+ sensitiveInputServicePtr->PasswordFieldVisibleInInsecureContext();
+ }
+
+ ~PasswordLayoutObject() override {}
+
+ protected:
+ void willBeDestroyed() override {
+ LayoutTextControlSingleLine::willBeDestroyed();
+ Document& document = inputElement()->document();
+ DCHECK(document.frame());
+ if (document.isSecureContext()) {
+ return;
+ }
+ document.decrementPasswordCount();
+ if (document.passwordCount() > 0)
+ return;
+
+ mojom::blink::SensitiveInputVisibilityServicePtr sensitiveInputServicePtr;
+ document.frame()->interfaceProvider()->getInterface(
+ mojo::GetProxy(&sensitiveInputServicePtr));
+ sensitiveInputServicePtr->AllPasswordFieldsInInsecureContextInvisible();
+ }
+};
+
+} // namespace
+
InputType* PasswordInputType::create(HTMLInputElement& element) {
return new PasswordInputType(element);
}
@@ -88,21 +141,7 @@ void PasswordInputType::disableSecureTextInput() {
LayoutObject* PasswordInputType::createLayoutObject(
const ComputedStyle& style) const {
- LayoutObject* layoutObject = TextFieldInputType::createLayoutObject(style);
- Document& document = element().document();
- if (document.isSecureContext() || !layoutObject) {
- // The browser process only cares about passwords on pages where the
- // top-level URL is not secure. Secure contexts must have a top-level
- // URL that is secure, so there is no need to send notifications for
- // password fields in secure contexts.
- return layoutObject;
- }
-
- mojom::blink::SensitiveInputVisibilityServicePtr sensitiveInputServicePtr;
- element().document().frame()->interfaceProvider()->getInterface(
- mojo::GetProxy(&sensitiveInputServicePtr));
- sensitiveInputServicePtr->PasswordFieldVisibleInInsecureContext();
- return layoutObject;
+ return new PasswordLayoutObject(&element());
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.cpp ('k') | third_party/WebKit/Source/core/html/forms/PasswordInputTypeTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698