| Index: third_party/WebKit/Source/platform/inspector_protocol/TypeBuilder_cpp.template
|
| diff --git a/third_party/WebKit/Source/platform/inspector_protocol/TypeBuilder_cpp.template b/third_party/WebKit/Source/platform/inspector_protocol/TypeBuilder_cpp.template
|
| index 1e768237f7b56b540ac5b960fe6f5b38e7a671c5..8f0412a5f607267b5adf08105555fb797e74c27a 100644
|
| --- a/third_party/WebKit/Source/platform/inspector_protocol/TypeBuilder_cpp.template
|
| +++ b/third_party/WebKit/Source/platform/inspector_protocol/TypeBuilder_cpp.template
|
| @@ -4,7 +4,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "{{output_package}}/{{domain.domain}}.h"
|
| +#include "{{config.protocol.package}}/{{domain.domain}}.h"
|
|
|
| namespace blink {
|
| namespace protocol {
|
| @@ -37,7 +37,7 @@ const char* {{ literal | dash_to_camelcase}} = "{{literal}}";
|
| {% if "enum" in property %}
|
|
|
| {% for literal in property.enum %}
|
| -const char* {{type.id}}::{{property.name | to_title_case}}Enum::{{ literal | dash_to_camelcase}} = "{{literal}}";
|
| +const char* {{type.id}}::{{property.name | to_title_case}}Enum::{{literal | dash_to_camelcase}} = "{{literal}}";
|
| {% endfor %}
|
| {% endif %}
|
| {% endfor %}
|
|
|