| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // This file has been auto-generated by code_generator_web_module.py. |
| 6 // DO NOT MODIFY! |
| 7 |
| 8 // This file has been generated from the Jinja2 template in |
| 9 // third_party/WebKit/Source/bindings/templates/web_module_interface.h.tmpl |
| 10 |
| 11 // clang-format off |
| 12 |
| 13 #ifndef WEB_API_EVENT_H |
| 14 #define WEB_API_EVENT_H |
| 15 |
| 16 #include "platform/heap/Handle.h" |
| 17 |
| 18 namespace blink { |
| 19 class Event; |
| 20 } |
| 21 |
| 22 namespace web { |
| 23 |
| 24 class Event : public blink::GarbageCollected<Event> { |
| 25 public: |
| 26 virtual ~Event() = default; |
| 27 |
| 28 static Event* Create(blink::Event*); |
| 29 |
| 30 DECLARE_TRACE(); |
| 31 |
| 32 protected: |
| 33 explicit Event(blink::Event* event); |
| 34 blink::Event* event() const; |
| 35 |
| 36 private: |
| 37 blink::Member<blink::Event> event_; |
| 38 }; |
| 39 |
| 40 } // namespace web |
| 41 |
| 42 #endif // WEB_API_EVENT_H |
| OLD | NEW |