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

Unified Diff: third_party/WebKit/Source/core/html/shadow/DateTimeEditElement.cpp

Issue 2810593002: Set plugin focus by implementing HTMLPlugInElement::SetFocused. (Closed)
Patch Set: fix comments 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/html/shadow/DateTimeEditElement.cpp
diff --git a/third_party/WebKit/Source/core/html/shadow/DateTimeEditElement.cpp b/third_party/WebKit/Source/core/html/shadow/DateTimeEditElement.cpp
index d8b902469bd186191b5a6d9b668c82e377e7c96a..7260fff6e995919a355df7286f0a9845c0af8f6b 100644
--- a/third_party/WebKit/Source/core/html/shadow/DateTimeEditElement.cpp
+++ b/third_party/WebKit/Source/core/html/shadow/DateTimeEditElement.cpp
@@ -592,14 +592,14 @@ PassRefPtr<ComputedStyle> DateTimeEditElement::CustomStyleForLayoutObject() {
return style.Release();
}
-void DateTimeEditElement::DidBlurFromField() {
+void DateTimeEditElement::DidBlurFromField(WebFocusType focus_type) {
if (edit_control_owner_)
- edit_control_owner_->DidBlurFromControl();
+ edit_control_owner_->DidBlurFromControl(focus_type);
}
-void DateTimeEditElement::DidFocusOnField() {
+void DateTimeEditElement::DidFocusOnField(WebFocusType focus_type) {
if (edit_control_owner_)
- edit_control_owner_->DidFocusOnControl();
+ edit_control_owner_->DidFocusOnControl(focus_type);
}
void DateTimeEditElement::DisabledStateChanged() {

Powered by Google App Engine
This is Rietveld 408576698