OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 ConsoleMessage_h | 5 #ifndef ConsoleMessage_h |
6 #define ConsoleMessage_h | 6 #define ConsoleMessage_h |
7 | 7 |
8 #include "bindings/core/v8/ScriptState.h" | 8 #include "bindings/core/v8/ScriptState.h" |
9 #include "core/CoreExport.h" | 9 #include "core/CoreExport.h" |
10 #include "core/frame/ConsoleTypes.h" | |
11 #include "core/inspector/ConsoleAPITypes.h" | |
12 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
| 11 #include "platform/v8_inspector/public/ConsoleAPITypes.h" |
| 12 #include "platform/v8_inspector/public/ConsoleTypes.h" |
13 #include "wtf/Forward.h" | 13 #include "wtf/Forward.h" |
14 #include "wtf/PassRefPtr.h" | 14 #include "wtf/PassRefPtr.h" |
15 #include "wtf/RefCounted.h" | 15 #include "wtf/RefCounted.h" |
16 #include "wtf/text/WTFString.h" | 16 #include "wtf/text/WTFString.h" |
17 | 17 |
18 namespace blink { | 18 namespace blink { |
19 | 19 |
20 class ScriptArguments; | 20 class ScriptArguments; |
21 class ScriptCallStack; | 21 class ScriptCallStack; |
22 class ScriptState; | 22 class ScriptState; |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 unsigned long m_requestIdentifier; | 84 unsigned long m_requestIdentifier; |
85 double m_timestamp; | 85 double m_timestamp; |
86 Member<WorkerInspectorProxy> m_workerProxy; | 86 Member<WorkerInspectorProxy> m_workerProxy; |
87 unsigned m_messageId; | 87 unsigned m_messageId; |
88 unsigned m_relatedMessageId; | 88 unsigned m_relatedMessageId; |
89 }; | 89 }; |
90 | 90 |
91 } // namespace blink | 91 } // namespace blink |
92 | 92 |
93 #endif // ConsoleMessage_h | 93 #endif // ConsoleMessage_h |
OLD | NEW |