| OLD | NEW |
| (Empty) | |
| 1 // This file is generated |
| 2 |
| 3 // Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 4 // Use of this source code is governed by a BSD-style license that can be |
| 5 // found in the LICENSE file. |
| 6 |
| 7 #ifndef {{class_name}}_h |
| 8 #define {{class_name}}_h |
| 9 |
| 10 |
| 11 #include "platform/inspector_protocol/FrontendChannel.h" |
| 12 #include "platform/inspector_protocol/TypeBuilder.h" |
| 13 |
| 14 namespace blink { |
| 15 namespace protocol { |
| 16 |
| 17 using ErrorString = String; |
| 18 |
| 19 class PLATFORM_EXPORT Frontend { |
| 20 public: |
| 21 Frontend(FrontendChannel*); |
| 22 FrontendChannel* channel() { return m_frontendChannel; } |
| 23 |
| 24 {% for domain in api.domains %} |
| 25 |
| 26 class PLATFORM_EXPORT {{domain.domain}} { |
| 27 public: |
| 28 static {{domain.domain}}* from(Frontend* frontend) { return &(frontend->
m_{{domain.domain | lower}}) ;} |
| 29 {{domain.domain}}(FrontendChannel* frontendChannel) : m_frontendChannel(
frontendChannel) { } |
| 30 {% for event in domain.events %} |
| 31 {% if "handlers" in event and not ("renderer" in event["handlers"]) %}{% con
tinue %}{% endif %} |
| 32 void {{event.name}}( |
| 33 {%- for parameter in event.parameters -%} |
| 34 {%- if "optional" in parameter -%} |
| 35 {{resolve_type(parameter).optional_pass_type}} |
| 36 {%- if resolve_type(parameter).nullable -%} |
| 37 {{parameter.name}} = nullptr |
| 38 {%- else -%} |
| 39 {{parameter.name}} = {{resolve_type(parameter).optional_type}}() |
| 40 {%- endif %} |
| 41 {%- else -%} |
| 42 {{resolve_type(parameter).pass_type}} {{parameter.name}} |
| 43 {%- endif -%}{%- if not loop.last -%}, {% endif -%} |
| 44 {%- endfor -%} |
| 45 ); |
| 46 {% endfor %} |
| 47 |
| 48 void flush() { m_frontendChannel->flush(); } |
| 49 private: |
| 50 FrontendChannel* m_frontendChannel; |
| 51 }; |
| 52 {% endfor %} |
| 53 |
| 54 private: |
| 55 FrontendChannel* m_frontendChannel; |
| 56 {% for domain in api.domains %} |
| 57 {{domain.domain}} m_{{domain.domain | lower}}; |
| 58 {% endfor %} |
| 59 }; |
| 60 |
| 61 } // namespace protocol |
| 62 } // namespace blink |
| 63 |
| 64 #endif // !defined({{class_name}}_h) |
| OLD | NEW |