| 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 17bcbe7af9b9f5f81542c18ac5a813013532ab71..b138a5e6ae01342bc676063af88e0c1342ec5491 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.h
|
| +++ b/third_party/WebKit/Source/core/dom/Document.h
|
| @@ -170,6 +170,7 @@ class VisitedLinkState;
|
| class WebGLRenderingContext;
|
| enum class SelectionBehaviorOnFocus;
|
| struct AnnotatedRegionValue;
|
| +struct FocusParams;
|
| struct IconURL;
|
|
|
| using MouseEventWithHitTestResults = EventWithHitTestResults<PlatformMouseEvent>;
|
| @@ -582,7 +583,8 @@ public:
|
| String selectedStylesheetSet() const;
|
| void setSelectedStylesheetSet(const String&);
|
|
|
| - bool setFocusedElement(PassRefPtrWillBeRawPtr<Element>, WebFocusType = WebFocusTypeNone, InputDeviceCapabilities* sourceCapabilities = nullptr);
|
| + bool setFocusedElement(PassRefPtrWillBeRawPtr<Element>, const FocusParams&);
|
| + void clearFocusedElement();
|
| Element* focusedElement() const { return m_focusedElement.get(); }
|
| UserActionElementSet& userActionElements() { return m_userActionElements; }
|
| const UserActionElementSet& userActionElements() const { return m_userActionElements; }
|
|
|