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

Unified Diff: third_party/WebKit/Source/platform/inspector_protocol/lib/Forward_h.template

Issue 2296043004: [DevTools] Various tweaks to inspector_protocol. (Closed)
Patch Set: optional exports Created 4 years, 4 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/lib/Forward_h.template
diff --git a/third_party/WebKit/Source/platform/inspector_protocol/lib/Forward_h.template b/third_party/WebKit/Source/platform/inspector_protocol/lib/Forward_h.template
index b1b1f8bb860ca8ca2007a8771e4b5c7e6425899e..2ad3897ba9d3e4194dc8ed8a83fffa1ed957c3d9 100644
--- a/third_party/WebKit/Source/platform/inspector_protocol/lib/Forward_h.template
+++ b/third_party/WebKit/Source/platform/inspector_protocol/lib/Forward_h.template
@@ -5,9 +5,11 @@
#ifndef {{"_".join(config.protocol.namespace)}}_Forward_h
#define {{"_".join(config.protocol.namespace)}}_Forward_h
-#include "{{config.class_export.header}}"
-#include "{{config.lib.platform_header}}"
-#include "{{config.lib.string_header}}"
+{% if config.lib.export_header %}
+#include {{format_include(config.lib.export_header)}}
+{% endif %}
+#include {{format_include(config.lib.platform_header)}}
+#include {{format_include(config.lib.string_header)}}
#include <vector>

Powered by Google App Engine
This is Rietveld 408576698