| Index: third_party/WebKit/Source/core/frame/DOMWindow.h
|
| diff --git a/third_party/WebKit/Source/core/frame/DOMWindow.h b/third_party/WebKit/Source/core/frame/DOMWindow.h
|
| index a8b4690a4a17b3bd7337a60ba25a770842f9bf40..514e1ebf93b159e45e9f2f841cce5c9305c9e77d 100644
|
| --- a/third_party/WebKit/Source/core/frame/DOMWindow.h
|
| +++ b/third_party/WebKit/Source/core/frame/DOMWindow.h
|
| @@ -31,6 +31,7 @@ class FrameRequestCallback;
|
| class History;
|
| class IdleRequestCallback;
|
| class IdleRequestOptions;
|
| +class InputDeviceCapabilitiesConstants;
|
| class Location;
|
| class LocalDOMWindow;
|
| class MessageEvent;
|
| @@ -256,6 +257,8 @@ class CORE_EXPORT DOMWindow : public EventTargetWithInlineData,
|
|
|
| DEFINE_ATTRIBUTE_EVENT_LISTENER(orientationchange);
|
|
|
| + InputDeviceCapabilitiesConstants* getInputDeviceCapabilities();
|
| +
|
| protected:
|
| explicit DOMWindow(Frame&);
|
|
|
| @@ -267,6 +270,7 @@ class CORE_EXPORT DOMWindow : public EventTargetWithInlineData,
|
|
|
| private:
|
| Member<Frame> m_frame;
|
| + Member<InputDeviceCapabilitiesConstants> m_inputCapabilities;
|
| mutable Member<Location> m_location;
|
| Member<External> m_external;
|
|
|
|
|