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

Unified Diff: third_party/WebKit/fake_gen/web/api/event_target.h

Issue 2591803002: NOT FOR LANDING: Thread the needle through all webmodules.
Patch Set: Updated with latest generated code. 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/fake_gen/web/api/event_target.h
diff --git a/third_party/WebKit/fake_gen/web/api/event_target.h b/third_party/WebKit/fake_gen/web/api/event_target.h
new file mode 100644
index 0000000000000000000000000000000000000000..7149d5d27304ad89c6b6030bf9e69ffd276a5074
--- /dev/null
+++ b/third_party/WebKit/fake_gen/web/api/event_target.h
@@ -0,0 +1,42 @@
+// 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.
+
+// This file has been auto-generated by code_generator_web_module.py.
+// DO NOT MODIFY!
+
+// This file has been generated from the Jinja2 template in
+// third_party/WebKit/Source/bindings/templates/web_module_interface.h.tmpl
+
+// clang-format off
+
+#ifndef WEB_API_EVENT_TARGET_H
+#define WEB_API_EVENT_TARGET_H
+
+#include "platform/heap/Handle.h"
+
+namespace blink {
+class EventTarget;
+}
+
+namespace web {
+
+class EventTarget : public blink::GarbageCollected<EventTarget> {
+ public:
+ virtual ~EventTarget() = default;
+
+ static EventTarget* Create(blink::EventTarget*);
+
+ DECLARE_TRACE();
+
+ protected:
+ explicit EventTarget(blink::EventTarget* event_target);
+ blink::EventTarget* event_target() const;
+
+ private:
+ blink::Member<blink::EventTarget> event_target_;
+};
+
+} // namespace web
+
+#endif // WEB_API_EVENT_TARGET_H

Powered by Google App Engine
This is Rietveld 408576698