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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DispatcherBase_h 5 #ifndef DispatcherBase_h
6 #define DispatcherBase_h 6 #define DispatcherBase_h
7 7
8 //#include "BackendCallback.h" 8 //#include "BackendCallback.h"
9 //#include "Collections.h" 9 //#include "Collections.h"
10 //#include "ErrorSupport.h" 10 //#include "ErrorSupport.h"
11 //#include "Platform.h" 11 //#include "Platform.h"
12 //#include "String16.h" 12 //#include "String16.h"
13 //#include "Values.h" 13 //#include "Values.h"
14 #include "{{export_macro_include}}" 14 #include "{{config.class_export.header}}"
15 15
16 namespace blink { 16 namespace blink {
17 namespace protocol { 17 namespace protocol {
18 18
19 class FrontendChannel; 19 class FrontendChannel;
20 class WeakPtr; 20 class WeakPtr;
21 21
22 class {{export_macro}} DispatcherBase { 22 class {{config.class_export.macro}} DispatcherBase {
23 PROTOCOL_DISALLOW_COPY(DispatcherBase); 23 PROTOCOL_DISALLOW_COPY(DispatcherBase);
24 public: 24 public:
25 static const char kInvalidRequest[]; 25 static const char kInvalidRequest[];
26 class {{export_macro}} WeakPtr { 26 class {{config.class_export.macro}} WeakPtr {
27 public: 27 public:
28 explicit WeakPtr(DispatcherBase*); 28 explicit WeakPtr(DispatcherBase*);
29 ~WeakPtr(); 29 ~WeakPtr();
30 DispatcherBase* get() { return m_dispatcher; } 30 DispatcherBase* get() { return m_dispatcher; }
31 void dispose() { m_dispatcher = nullptr; } 31 void dispose() { m_dispatcher = nullptr; }
32 32
33 private: 33 private:
34 DispatcherBase* m_dispatcher; 34 DispatcherBase* m_dispatcher;
35 }; 35 };
36 36
37 class {{export_macro}} Callback : public protocol::BackendCallback { 37 class {{config.class_export.macro}} Callback : public protocol::BackendCallb ack {
38 public: 38 public:
39 Callback(std::unique_ptr<WeakPtr> backendImpl, int callId); 39 Callback(std::unique_ptr<WeakPtr> backendImpl, int callId);
40 virtual ~Callback(); 40 virtual ~Callback();
41 void dispose(); 41 void dispose();
42 42
43 protected: 43 protected:
44 void sendIfActive(std::unique_ptr<protocol::DictionaryValue> partialMess age, const ErrorString& invocationError); 44 void sendIfActive(std::unique_ptr<protocol::DictionaryValue> partialMess age, const ErrorString& invocationError);
45 45
46 private: 46 private:
47 std::unique_ptr<WeakPtr> m_backendImpl; 47 std::unique_ptr<WeakPtr> m_backendImpl;
(...skipping 23 matching lines...) Expand all
71 void reportProtocolError(int callId, CommonErrorCode, const String16& errorM essage, ErrorSupport* errors); 71 void reportProtocolError(int callId, CommonErrorCode, const String16& errorM essage, ErrorSupport* errors);
72 void clearFrontend(); 72 void clearFrontend();
73 73
74 std::unique_ptr<WeakPtr> weakPtr(); 74 std::unique_ptr<WeakPtr> weakPtr();
75 75
76 private: 76 private:
77 FrontendChannel* m_frontendChannel; 77 FrontendChannel* m_frontendChannel;
78 protocol::HashSet<WeakPtr*> m_weakPtrs; 78 protocol::HashSet<WeakPtr*> m_weakPtrs;
79 }; 79 };
80 80
81 class {{export_macro}} UberDispatcher { 81 class {{config.class_export.macro}} UberDispatcher {
82 PROTOCOL_DISALLOW_COPY(UberDispatcher); 82 PROTOCOL_DISALLOW_COPY(UberDispatcher);
83 public: 83 public:
84 explicit UberDispatcher(FrontendChannel*); 84 explicit UberDispatcher(FrontendChannel*);
85 void registerBackend(const String16& name, std::unique_ptr<protocol::Dispatc herBase>); 85 void registerBackend(const String16& name, std::unique_ptr<protocol::Dispatc herBase>);
86 void dispatch(const String16& message); 86 void dispatch(const String16& message);
87 FrontendChannel* channel() { return m_frontendChannel; } 87 FrontendChannel* channel() { return m_frontendChannel; }
88 virtual ~UberDispatcher(); 88 virtual ~UberDispatcher();
89 89
90 private: 90 private:
91 FrontendChannel* m_frontendChannel; 91 FrontendChannel* m_frontendChannel;
92 protocol::HashMap<String16, std::unique_ptr<protocol::DispatcherBase>> m_dis patchers; 92 protocol::HashMap<String16, std::unique_ptr<protocol::DispatcherBase>> m_dis patchers;
93 }; 93 };
94 94
95 } // namespace platform 95 } // namespace platform
96 } // namespace blink 96 } // namespace blink
97 97
98 #endif // !defined(DispatcherBase_h) 98 #endif // !defined(DispatcherBase_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698