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

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/V8ConsoleMessage.h

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 V8ConsoleMessage_h 5 #ifndef V8ConsoleMessage_h
6 #define V8ConsoleMessage_h 6 #define V8ConsoleMessage_h
7 7
8 #include "platform/inspector_protocol/Collections.h" 8 #include "platform/inspector_protocol/InspectorProtocol.h"
9 #include "platform/inspector_protocol/String16.h"
10 #include "platform/v8_inspector/protocol/Console.h" 9 #include "platform/v8_inspector/protocol/Console.h"
11 #include "platform/v8_inspector/protocol/Runtime.h" 10 #include "platform/v8_inspector/protocol/Runtime.h"
12 #include <deque> 11 #include <deque>
13 #include <v8.h> 12 #include <v8.h>
14 13
15 namespace blink { 14 namespace blink {
16 15
17 class InspectedContext; 16 class InspectedContext;
18 class V8InspectorImpl; 17 class V8InspectorImpl;
19 class V8InspectorSessionImpl; 18 class V8InspectorSessionImpl;
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 private: 98 private:
100 V8InspectorImpl* m_inspector; 99 V8InspectorImpl* m_inspector;
101 int m_contextGroupId; 100 int m_contextGroupId;
102 int m_expiredCount; 101 int m_expiredCount;
103 std::deque<std::unique_ptr<V8ConsoleMessage>> m_messages; 102 std::deque<std::unique_ptr<V8ConsoleMessage>> m_messages;
104 }; 103 };
105 104
106 } // namespace blink 105 } // namespace blink
107 106
108 #endif // V8ConsoleMessage_h 107 #endif // V8ConsoleMessage_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698