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

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

Issue 2248783003: [DevTools] Refactor CodeGenerator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: up_to_date fix 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/DispatcherBase_h.template
diff --git a/third_party/WebKit/Source/platform/inspector_protocol/DispatcherBase_h.template b/third_party/WebKit/Source/platform/inspector_protocol/DispatcherBase_h.template
index 76b7958f42967a3ccd21b454f0dba1c01bd25b5b..4402d9674ab24651f3a6e005f26b60798765df68 100644
--- a/third_party/WebKit/Source/platform/inspector_protocol/DispatcherBase_h.template
+++ b/third_party/WebKit/Source/platform/inspector_protocol/DispatcherBase_h.template
@@ -11,7 +11,7 @@
//#include "Platform.h"
//#include "String16.h"
//#include "Values.h"
-#include "{{export_macro_include}}"
+#include "{{config.class_export.header}}"
namespace blink {
namespace protocol {
@@ -19,11 +19,11 @@ namespace protocol {
class FrontendChannel;
class WeakPtr;
-class {{export_macro}} DispatcherBase {
+class {{config.class_export.macro}} DispatcherBase {
PROTOCOL_DISALLOW_COPY(DispatcherBase);
public:
static const char kInvalidRequest[];
- class {{export_macro}} WeakPtr {
+ class {{config.class_export.macro}} WeakPtr {
public:
explicit WeakPtr(DispatcherBase*);
~WeakPtr();
@@ -34,7 +34,7 @@ public:
DispatcherBase* m_dispatcher;
};
- class {{export_macro}} Callback : public protocol::BackendCallback {
+ class {{config.class_export.macro}} Callback : public protocol::BackendCallback {
public:
Callback(std::unique_ptr<WeakPtr> backendImpl, int callId);
virtual ~Callback();
@@ -78,7 +78,7 @@ private:
protocol::HashSet<WeakPtr*> m_weakPtrs;
};
-class {{export_macro}} UberDispatcher {
+class {{config.class_export.macro}} UberDispatcher {
PROTOCOL_DISALLOW_COPY(UberDispatcher);
public:
explicit UberDispatcher(FrontendChannel*);

Powered by Google App Engine
This is Rietveld 408576698