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

Side by Side Diff: third_party/WebKit/Source/platform/inspector_protocol/DispatcherBase_h.template

Issue 2238423002: [DevTools] Generate all files in inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2240663003
Patch Set: 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 "platform/inspector_protocol/BackendCallback.h" 8 //#include "BackendCallback.h"
9 #include "platform/inspector_protocol/Collections.h" 9 //#include "Collections.h"
10 #include "platform/inspector_protocol/ErrorSupport.h" 10 //#include "ErrorSupport.h"
11 #include "platform/inspector_protocol/Platform.h" 11 //#include "Platform.h"
12 #include "platform/inspector_protocol/String16.h" 12 //#include "String16.h"
13 #include "platform/inspector_protocol/Values.h" 13 //#include "Values.h"
14 #include "{{export_macro_include}}"
14 15
15 namespace blink { 16 namespace blink {
16 namespace protocol { 17 namespace protocol {
17 18
18 class FrontendChannel; 19 class FrontendChannel;
19 class WeakPtr; 20 class WeakPtr;
20 21
21 class PLATFORM_EXPORT DispatcherBase { 22 class {{export_macro}} DispatcherBase {
22 PROTOCOL_DISALLOW_COPY(DispatcherBase); 23 PROTOCOL_DISALLOW_COPY(DispatcherBase);
23 public: 24 public:
24 static const char kInvalidRequest[]; 25 static const char kInvalidRequest[];
25 class PLATFORM_EXPORT WeakPtr { 26 class {{export_macro}} WeakPtr {
26 public: 27 public:
27 explicit WeakPtr(DispatcherBase*); 28 explicit WeakPtr(DispatcherBase*);
28 ~WeakPtr(); 29 ~WeakPtr();
29 DispatcherBase* get() { return m_dispatcher; } 30 DispatcherBase* get() { return m_dispatcher; }
30 void dispose() { m_dispatcher = nullptr; } 31 void dispose() { m_dispatcher = nullptr; }
31 32
32 private: 33 private:
33 DispatcherBase* m_dispatcher; 34 DispatcherBase* m_dispatcher;
34 }; 35 };
35 36
36 class PLATFORM_EXPORT Callback : public protocol::BackendCallback { 37 class {{export_macro}} Callback : public protocol::BackendCallback {
37 public: 38 public:
38 Callback(std::unique_ptr<WeakPtr> backendImpl, int callId); 39 Callback(std::unique_ptr<WeakPtr> backendImpl, int callId);
39 virtual ~Callback(); 40 virtual ~Callback();
40 void dispose(); 41 void dispose();
41 42
42 protected: 43 protected:
43 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);
44 45
45 private: 46 private:
46 std::unique_ptr<WeakPtr> m_backendImpl; 47 std::unique_ptr<WeakPtr> m_backendImpl;
(...skipping 23 matching lines...) Expand all
70 void reportProtocolError(int callId, CommonErrorCode, const String16& errorM essage, ErrorSupport* errors); 71 void reportProtocolError(int callId, CommonErrorCode, const String16& errorM essage, ErrorSupport* errors);
71 void clearFrontend(); 72 void clearFrontend();
72 73
73 std::unique_ptr<WeakPtr> weakPtr(); 74 std::unique_ptr<WeakPtr> weakPtr();
74 75
75 private: 76 private:
76 FrontendChannel* m_frontendChannel; 77 FrontendChannel* m_frontendChannel;
77 protocol::HashSet<WeakPtr*> m_weakPtrs; 78 protocol::HashSet<WeakPtr*> m_weakPtrs;
78 }; 79 };
79 80
80 class PLATFORM_EXPORT UberDispatcher { 81 class {{export_macro}} UberDispatcher {
81 PROTOCOL_DISALLOW_COPY(UberDispatcher); 82 PROTOCOL_DISALLOW_COPY(UberDispatcher);
82 public: 83 public:
83 explicit UberDispatcher(FrontendChannel*); 84 explicit UberDispatcher(FrontendChannel*);
84 void registerBackend(const String16& name, std::unique_ptr<protocol::Dispatc herBase>); 85 void registerBackend(const String16& name, std::unique_ptr<protocol::Dispatc herBase>);
85 void dispatch(const String16& message); 86 void dispatch(const String16& message);
86 FrontendChannel* channel() { return m_frontendChannel; } 87 FrontendChannel* channel() { return m_frontendChannel; }
87 virtual ~UberDispatcher(); 88 virtual ~UberDispatcher();
88 89
89 private: 90 private:
90 FrontendChannel* m_frontendChannel; 91 FrontendChannel* m_frontendChannel;
91 protocol::HashMap<String16, std::unique_ptr<protocol::DispatcherBase>> m_dis patchers; 92 protocol::HashMap<String16, std::unique_ptr<protocol::DispatcherBase>> m_dis patchers;
92 }; 93 };
93 94
94 } // namespace platform 95 } // namespace platform
95 } // namespace blink 96 } // namespace blink
96 97
97 #endif // !defined(DispatcherBase_h) 98 #endif // !defined(DispatcherBase_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698