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

Unified Diff: third_party/WebKit/Source/platform/inspector_protocol/Backend_h.template

Issue 2012753003: DevTools: consolidate protocol generators for front-end, backend and type builder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/Source/platform/inspector_protocol/Backend_h.template
diff --git a/third_party/WebKit/Source/platform/inspector_protocol/Backend_h.template b/third_party/WebKit/Source/platform/inspector_protocol/Backend_h.template
deleted file mode 100644
index c1f3cb69c50a2fb56fb8fa83fe1082ee8c05b9d0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/platform/inspector_protocol/Backend_h.template
+++ /dev/null
@@ -1,74 +0,0 @@
-// This file is generated
-
-// Copyright (c) 2016 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 {{class_name}}_h
-#define {{class_name}}_h
-
-#include "platform/inspector_protocol/BackendCallback.h"
-#include "platform/inspector_protocol/ErrorSupport.h"
-#include "platform/inspector_protocol/TypeBuilder.h"
-
-namespace blink {
-namespace protocol {
-
-{% for domain in api.domains %}
-
-namespace {{domain.domain}} {
-
-class PLATFORM_EXPORT Backend {
-public:
- {% for command in domain.commands %}
- {% if "redirect" in command %}{% continue %}{% endif %}
- {% if ("handlers" in command) and not ("renderer" in command["handlers"]) %}{% continue %}{% endif %}
- {% if "async" in command %}
- class PLATFORM_EXPORT {{command.name | to_title_case}}Callback : public BackendCallback {
- public:
- virtual void sendSuccess(
- {%- for parameter in command.returns -%}
- {%- if "optional" in parameter -%}
- const Maybe<{{resolve_type(parameter).raw_type}}>& {{parameter.name}}
- {%- else -%}
- {{resolve_type(parameter).pass_type}} {{parameter.name}}
- {%- endif -%}
- {%- if not loop.last -%}, {% endif -%}
- {%- endfor -%}
- ) = 0;
- };
- {% endif %}
- virtual void {{command.name}}(ErrorString*
- {%- for parameter in command.parameters -%}
- {%- if "optional" in parameter -%}
- , const Maybe<{{resolve_type(parameter).raw_type}}>& in_{{parameter.name}}
- {%- else -%}
- , {{resolve_type(parameter).pass_type}} in_{{parameter.name}}
- {%- endif -%}
- {%- endfor -%}
- {%- if "async" in command -%}
- , std::unique_ptr<{{command.name | to_title_case}}Callback> callback
- {%- else -%}
- {%- for parameter in command.returns -%}
- {%- if "optional" in parameter -%}
- , Maybe<{{resolve_type(parameter).raw_type}}>* out_{{parameter.name}}
- {%- else -%}
- , {{resolve_type(parameter).type}}* out_{{parameter.name}}
- {%- endif -%}
- {%- endfor -%}
- {%- endif -%}
- ) = 0;
- {% endfor %}
-
-protected:
- virtual ~Backend() { }
-};
-
-} // namespace {{domain.domain}}
-
-{% endfor %}
-
-} // namespace protocol
-} // namespace blink
-
-#endif // !defined({{class_name}}_h)

Powered by Google App Engine
This is Rietveld 408576698