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

Side by Side Diff: third_party/WebKit/Source/platform/inspector_protocol/Values.h

Issue 2044343002: DevTools: update V8Inspector to work with the new v8_inspector API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comment addressed Created 4 years, 6 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 Values_h 5 #ifndef Values_h
6 #define Values_h 6 #define Values_h
7 7
8 #include "platform/PlatformExport.h"
9 #include "platform/inspector_protocol/Allocator.h" 8 #include "platform/inspector_protocol/Allocator.h"
10 #include "platform/inspector_protocol/Collections.h" 9 #include "platform/inspector_protocol/Collections.h"
10 #include "platform/inspector_protocol/Platform.h"
11 #include "platform/inspector_protocol/String16.h" 11 #include "platform/inspector_protocol/String16.h"
12 #include "wtf/PtrUtil.h"
13 12
14 namespace blink { 13 namespace blink {
15 namespace protocol { 14 namespace protocol {
16 15
17 class ListValue; 16 class ListValue;
18 class DictionaryValue; 17 class DictionaryValue;
19 class Value; 18 class Value;
20 19
21 class PLATFORM_EXPORT Value { 20 class PLATFORM_EXPORT Value {
22 PROTOCOL_DISALLOW_COPY(Value); 21 PROTOCOL_DISALLOW_COPY(Value);
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 211
213 private: 212 private:
214 ListValue(); 213 ListValue();
215 protocol::Vector<std::unique_ptr<Value>> m_data; 214 protocol::Vector<std::unique_ptr<Value>> m_data;
216 }; 215 };
217 216
218 } // namespace protocol 217 } // namespace protocol
219 } // namespace blink 218 } // namespace blink
220 219
221 #endif // Values_h 220 #endif // Values_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698