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

Unified Diff: Source/core/events/RelatedEvent.h

Issue 243403006: Implement contextmenu attribute with basic support of <menu> (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Reflect HTMLMenuElement as per spec Created 6 years, 4 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 | « Source/core/events/Event.cpp ('k') | Source/core/events/RelatedEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/RelatedEvent.h
diff --git a/Source/core/events/RelatedEvent.h b/Source/core/events/RelatedEvent.h
new file mode 100644
index 0000000000000000000000000000000000000000..83b7719ac93a1ee1ec370b76f7d51a206e806773
--- /dev/null
+++ b/Source/core/events/RelatedEvent.h
@@ -0,0 +1,46 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef RelatedEvent_h
+#define RelatedEvent_h
+
+#include "core/events/Event.h"
+
+namespace blink {
+
+struct RelatedEventInit : public EventInit {
+ RelatedEventInit();
+ RefPtrWillBeMember<EventTarget> relatedTarget;
+};
+
+class RelatedEvent FINAL : public Event {
+public:
+ static PassRefPtrWillBeRawPtr<RelatedEvent> create();
+ static PassRefPtrWillBeRawPtr<RelatedEvent> create(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget);
+ static PassRefPtrWillBeRawPtr<RelatedEvent> create(const AtomicString& eventType, const RelatedEventInit&);
+
+ virtual ~RelatedEvent();
+
+ EventTarget* relatedTarget() const { return m_relatedTarget.get(); }
+ void setRelatedTarget(PassRefPtrWillBeRawPtr<EventTarget> relatedTarget) { m_relatedTarget = relatedTarget; }
+
+
+ virtual const AtomicString& interfaceName() const OVERRIDE { return EventNames::RelatedEvent; }
+ virtual bool isRelatedEvent() const OVERRIDE { return true; }
+
+ virtual void trace(Visitor*) OVERRIDE;
+
+private:
+ RelatedEvent();
+ RelatedEvent(const AtomicString& type, bool canBubble, bool cancelable, EventTarget*);
+ RelatedEvent(const AtomicString& type, const RelatedEventInit&);
+
+ RefPtrWillBeMember<EventTarget> m_relatedTarget;
+};
+
+DEFINE_EVENT_TYPE_CASTS(RelatedEvent);
+
+} // namespace blink
+
+#endif // RelatedEvent_h
« no previous file with comments | « Source/core/events/Event.cpp ('k') | Source/core/events/RelatedEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698