| Index: third_party/WebKit/Source/platform/inspector_protocol/BackendCallback_h.template
|
| diff --git a/third_party/WebKit/Source/platform/inspector_protocol/BackendCallback_h.template b/third_party/WebKit/Source/platform/inspector_protocol/BackendCallback_h.template
|
| index 0eb44bf2fcfb6737a82f26621cfe2485da0f3500..d44803cab40e49150f7a8b31f4239f7904b49533 100644
|
| --- a/third_party/WebKit/Source/platform/inspector_protocol/BackendCallback_h.template
|
| +++ b/third_party/WebKit/Source/platform/inspector_protocol/BackendCallback_h.template
|
| @@ -2,15 +2,15 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef BackendCallback_h
|
| -#define BackendCallback_h
|
| +#ifndef {{"_".join(config.protocol.namespace)}}_BackendCallback_h
|
| +#define {{"_".join(config.protocol.namespace)}}_BackendCallback_h
|
|
|
| //#include "ErrorSupport.h"
|
| //#include "Platform.h"
|
| -#include "{{config.class_export.header}}"
|
|
|
| -namespace blink {
|
| -namespace protocol {
|
| +{% for namespace in config.protocol.namespace %}
|
| +namespace {{namespace}} {
|
| +{% endfor %}
|
|
|
| class {{config.class_export.macro}} BackendCallback {
|
| public:
|
| @@ -18,7 +18,8 @@ public:
|
| virtual void sendFailure(const ErrorString&) = 0;
|
| };
|
|
|
| -} // namespace platform
|
| -} // namespace blink
|
| +{% for namespace in config.protocol.namespace %}
|
| +} // namespace {{namespace}}
|
| +{% endfor %}
|
|
|
| -#endif // !defined(BackendCallback_h)
|
| +#endif // !defined({{"_".join(config.protocol.namespace)}}_BackendCallback_h)
|
|
|