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

Unified Diff: third_party/WebKit/Source/core/dom/Document.h

Issue 2650403006: Remove PlatformMouseEvent and use WebMouseEvent instead (Closed)
Patch Set: Fix nits Created 3 years, 11 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 a46b828b0d4250ef3dbc38e41f2e50ca8da52f57..746f7f59f8d1f3fda063623226ccf0bc44c0fa52 100644
--- a/third_party/WebKit/Source/core/dom/Document.h
+++ b/third_party/WebKit/Source/core/dom/Document.h
@@ -141,7 +141,6 @@ class NodeIterator;
class NthIndexCache;
class OriginAccessEntry;
class Page;
-class PlatformMouseEvent;
class ProcessingInstruction;
class PropertyRegistry;
class QualifiedName;
@@ -172,12 +171,12 @@ class TouchList;
class TransformSource;
class TreeWalker;
class VisitedLinkState;
+class WebMouseEvent;
struct AnnotatedRegionValue;
struct FocusParams;
struct IconURL;
-using MouseEventWithHitTestResults =
- EventWithHitTestResults<PlatformMouseEvent>;
+using MouseEventWithHitTestResults = EventWithHitTestResults<WebMouseEvent>;
using ExceptionCode = int;
enum NodeListInvalidationType {
@@ -687,10 +686,9 @@ class CORE_EXPORT Document : public ContainerNode,
TextLinkColors& textLinkColors() { return m_textLinkColors; }
VisitedLinkState& visitedLinkState() const { return *m_visitedLinkState; }
- MouseEventWithHitTestResults performMouseEventHitTest(
- const HitTestRequest&,
- const LayoutPoint&,
- const PlatformMouseEvent&);
+ MouseEventWithHitTestResults performMouseEventHitTest(const HitTestRequest&,
+ const LayoutPoint&,
+ const WebMouseEvent&);
/* Newly proposed CSS3 mechanism for selecting alternate
stylesheets using the DOM. May be subject to change as
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698