| Index: third_party/WebKit/fake_gen/web/api/event.h
|
| diff --git a/third_party/WebKit/fake_gen/web/api/event.h b/third_party/WebKit/fake_gen/web/api/event.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..feaf89c3296700c15111935b67842e8e777013d5
|
| --- /dev/null
|
| +++ b/third_party/WebKit/fake_gen/web/api/event.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_H
|
| +#define WEB_API_EVENT_H
|
| +
|
| +#include "platform/heap/Handle.h"
|
| +
|
| +namespace blink {
|
| +class Event;
|
| +}
|
| +
|
| +namespace web {
|
| +
|
| +class Event : public blink::GarbageCollected<Event> {
|
| + public:
|
| + virtual ~Event() = default;
|
| +
|
| + static Event* Create(blink::Event*);
|
| +
|
| + DECLARE_TRACE();
|
| +
|
| + protected:
|
| + explicit Event(blink::Event* event);
|
| + blink::Event* event() const;
|
| +
|
| + private:
|
| + blink::Member<blink::Event> event_;
|
| +};
|
| +
|
| +} // namespace web
|
| +
|
| +#endif // WEB_API_EVENT_H
|
|
|