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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorInspectorAgent.h

Issue 1767883002: DevTools: generate string16-based handlers for v8_inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for landing 2 Created 4 years, 9 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 /* 1 /*
2 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 25 matching lines...) Expand all
36 #include "wtf/Vector.h" 36 #include "wtf/Vector.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 class LocalFrame; 40 class LocalFrame;
41 41
42 namespace protocol { 42 namespace protocol {
43 class DictionaryValue; 43 class DictionaryValue;
44 } 44 }
45 45
46 typedef String ErrorString;
47
48 class CORE_EXPORT InspectorInspectorAgent final : public InspectorBaseAgent<Insp ectorInspectorAgent, protocol::Frontend::Inspector>, public protocol::Dispatcher ::InspectorCommandHandler { 46 class CORE_EXPORT InspectorInspectorAgent final : public InspectorBaseAgent<Insp ectorInspectorAgent, protocol::Frontend::Inspector>, public protocol::Dispatcher ::InspectorCommandHandler {
49 WTF_MAKE_NONCOPYABLE(InspectorInspectorAgent); 47 WTF_MAKE_NONCOPYABLE(InspectorInspectorAgent);
50 public: 48 public:
51 static PassOwnPtrWillBeRawPtr<InspectorInspectorAgent> create() 49 static PassOwnPtrWillBeRawPtr<InspectorInspectorAgent> create()
52 { 50 {
53 return adoptPtrWillBeNoop(new InspectorInspectorAgent()); 51 return adoptPtrWillBeNoop(new InspectorInspectorAgent());
54 } 52 }
55 53
56 ~InspectorInspectorAgent() override; 54 ~InspectorInspectorAgent() override;
57 55
(...skipping 11 matching lines...) Expand all
69 67
70 private: 68 private:
71 InspectorInspectorAgent(); 69 InspectorInspectorAgent();
72 70
73 Vector<std::pair<long, String>> m_pendingEvaluateTestCommands; 71 Vector<std::pair<long, String>> m_pendingEvaluateTestCommands;
74 }; 72 };
75 73
76 } // namespace blink 74 } // namespace blink
77 75
78 #endif // !defined(InspectorInspectorAgent_h) 76 #endif // !defined(InspectorInspectorAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698