| 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
|
| deleted file mode 100644
|
| index 0c76933176aec76ee312cfce66a882be5523db4d..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/platform/inspector_protocol/DispatcherBase_h.template
|
| +++ /dev/null
|
| @@ -1,97 +0,0 @@
|
| -// Copyright 2016 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef {{"_".join(config.protocol.namespace)}}_DispatcherBase_h
|
| -#define {{"_".join(config.protocol.namespace)}}_DispatcherBase_h
|
| -
|
| -//#include "BackendCallback.h"
|
| -//#include "Collections.h"
|
| -//#include "ErrorSupport.h"
|
| -//#include "Forward.h"
|
| -//#include "Values.h"
|
| -
|
| -{% for namespace in config.protocol.namespace %}
|
| -namespace {{namespace}} {
|
| -{% endfor %}
|
| -
|
| -class WeakPtr;
|
| -
|
| -class {{config.class_export.macro}} DispatcherBase {
|
| - PROTOCOL_DISALLOW_COPY(DispatcherBase);
|
| -public:
|
| - static const char kInvalidRequest[];
|
| - class {{config.class_export.macro}} WeakPtr {
|
| - public:
|
| - explicit WeakPtr(DispatcherBase*);
|
| - ~WeakPtr();
|
| - DispatcherBase* get() { return m_dispatcher; }
|
| - void dispose() { m_dispatcher = nullptr; }
|
| -
|
| - private:
|
| - DispatcherBase* m_dispatcher;
|
| - };
|
| -
|
| - class {{config.class_export.macro}} Callback : public protocol::BackendCallback {
|
| - public:
|
| - Callback(std::unique_ptr<WeakPtr> backendImpl, int callId);
|
| - virtual ~Callback();
|
| - void dispose();
|
| -
|
| - protected:
|
| - void sendIfActive(std::unique_ptr<protocol::DictionaryValue> partialMessage, const ErrorString& invocationError);
|
| -
|
| - private:
|
| - std::unique_ptr<WeakPtr> m_backendImpl;
|
| - int m_callId;
|
| - };
|
| -
|
| - explicit DispatcherBase(FrontendChannel*);
|
| - virtual ~DispatcherBase();
|
| -
|
| - enum CommonErrorCode {
|
| - ParseError = -32700,
|
| - InvalidRequest = -32600,
|
| - MethodNotFound = -32601,
|
| - InvalidParams = -32602,
|
| - InternalError = -32603,
|
| - ServerError = -32000,
|
| - };
|
| -
|
| - static bool getCommandName(const String& message, String* result);
|
| -
|
| - virtual void dispatch(int callId, const String& method, std::unique_ptr<protocol::DictionaryValue> messageObject) = 0;
|
| -
|
| - void sendResponse(int callId, const ErrorString&, ErrorSupport*, std::unique_ptr<protocol::DictionaryValue> result);
|
| - void sendResponse(int callId, const ErrorString&, std::unique_ptr<protocol::DictionaryValue> result);
|
| - void sendResponse(int callId, const ErrorString&);
|
| -
|
| - void reportProtocolError(int callId, CommonErrorCode, const String& errorMessage, ErrorSupport* errors);
|
| - void clearFrontend();
|
| -
|
| - std::unique_ptr<WeakPtr> weakPtr();
|
| -
|
| -private:
|
| - FrontendChannel* m_frontendChannel;
|
| - protocol::HashSet<WeakPtr*> m_weakPtrs;
|
| -};
|
| -
|
| -class {{config.class_export.macro}} UberDispatcher {
|
| - PROTOCOL_DISALLOW_COPY(UberDispatcher);
|
| -public:
|
| - explicit UberDispatcher(FrontendChannel*);
|
| - void registerBackend(const String& name, std::unique_ptr<protocol::DispatcherBase>);
|
| - void dispatch(std::unique_ptr<Value> message);
|
| - FrontendChannel* channel() { return m_frontendChannel; }
|
| - virtual ~UberDispatcher();
|
| -
|
| -private:
|
| - FrontendChannel* m_frontendChannel;
|
| - protocol::HashMap<String, std::unique_ptr<protocol::DispatcherBase>> m_dispatchers;
|
| -};
|
| -
|
| -{% for namespace in config.protocol.namespace %}
|
| -} // namespace {{namespace}}
|
| -{% endfor %}
|
| -
|
| -#endif // !defined({{"_".join(config.protocol.namespace)}}_DispatcherBase_h)
|
|
|