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

Unified Diff: third_party/WebKit/Source/platform/inspector_protocol/lib/DispatcherBase_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/DispatcherBase_h.template
diff --git a/third_party/WebKit/Source/platform/inspector_protocol/lib/DispatcherBase_h.template b/third_party/WebKit/Source/platform/inspector_protocol/lib/DispatcherBase_h.template
index 0c76933176aec76ee312cfce66a882be5523db4d..17fd8708abdb76944afafdac03ff0db0df11df46 100644
--- a/third_party/WebKit/Source/platform/inspector_protocol/lib/DispatcherBase_h.template
+++ b/third_party/WebKit/Source/platform/inspector_protocol/lib/DispatcherBase_h.template
@@ -17,11 +17,11 @@ namespace {{namespace}} {
class WeakPtr;
-class {{config.class_export.macro}} DispatcherBase {
+class {{config.lib.export_macro}} DispatcherBase {
PROTOCOL_DISALLOW_COPY(DispatcherBase);
public:
static const char kInvalidRequest[];
- class {{config.class_export.macro}} WeakPtr {
+ class {{config.lib.export_macro}} WeakPtr {
public:
explicit WeakPtr(DispatcherBase*);
~WeakPtr();
@@ -32,7 +32,7 @@ public:
DispatcherBase* m_dispatcher;
};
- class {{config.class_export.macro}} Callback : public protocol::BackendCallback {
+ class {{config.lib.export_macro}} Callback : public protocol::BackendCallback {
public:
Callback(std::unique_ptr<WeakPtr> backendImpl, int callId);
virtual ~Callback();
@@ -76,7 +76,7 @@ private:
protocol::HashSet<WeakPtr*> m_weakPtrs;
};
-class {{config.class_export.macro}} UberDispatcher {
+class {{config.lib.export_macro}} UberDispatcher {
PROTOCOL_DISALLOW_COPY(UberDispatcher);
public:
explicit UberDispatcher(FrontendChannel*);

Powered by Google App Engine
This is Rietveld 408576698