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

Unified Diff: third_party/WebKit/Source/core/input/MouseEventManager.h

Issue 2678683002: Delay instantiating InputDeviceCapabilities until accessed. (Closed)
Patch Set: rebased Created 3 years, 10 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/input/MouseEventManager.h
diff --git a/third_party/WebKit/Source/core/input/MouseEventManager.h b/third_party/WebKit/Source/core/input/MouseEventManager.h
index 0628dfb560b3d60734fda8e5d07b4390c66952db..e3204bca6b4089e4a2dc874d42eb6833ba5a304e 100644
--- a/third_party/WebKit/Source/core/input/MouseEventManager.h
+++ b/third_party/WebKit/Source/core/input/MouseEventManager.h
@@ -8,6 +8,7 @@
#include "core/CoreExport.h"
#include "core/dom/SynchronousMutationObserver.h"
#include "core/input/BoundaryEventDispatcher.h"
+#include "core/input/InputDeviceCapabilities.h"
#include "core/page/DragActions.h"
#include "core/page/EventWithHitTestResults.h"
#include "platform/Timer.h"
@@ -24,7 +25,6 @@ class DataTransfer;
class Element;
class FloatQuad;
class HitTestResult;
-class InputDeviceCapabilities;
class LocalFrame;
class ScrollManager;
@@ -80,7 +80,7 @@ class CORE_EXPORT MouseEventManager final
WebInputEventResult handleMouseFocus(
const HitTestResult&,
- InputDeviceCapabilities* sourceCapabilities);
+ const InputDeviceCapabilitiesValue& sourceCapabilities);
void fakeMouseMoveEventTimerFired(TimerBase*);

Powered by Google App Engine
This is Rietveld 408576698