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

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

Issue 1859293002: [DevTools] Move Console to v8_inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 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 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"
13 #include "wtf/OwnPtr.h" 11 #include "platform/v8_inspector/public/ConsoleAPITypes.h"
12 #include "platform/v8_inspector/public/ConsoleTypes.h"
13 #include "wtf/Forward.h"
14 #include "wtf/PassRefPtr.h" 14 #include "wtf/PassRefPtr.h"
15 #include "wtf/RefPtr.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;
23 class WorkerInspectorProxy; 23 class WorkerInspectorProxy;
24 24
25 class CORE_EXPORT ConsoleMessage final: public GarbageCollectedFinalized<Console Message> { 25 class CORE_EXPORT ConsoleMessage final: public GarbageCollectedFinalized<Console Message> {
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698