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

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

Issue 2139363003: [DevTools] Cleanup v8_inspector API part 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 5 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 V8ConsoleTypes_h 5 #ifndef V8ConsoleTypes_h
6 #define V8ConsoleTypes_h 6 #define V8ConsoleTypes_h
7 7
8 namespace blink { 8 namespace blink {
9 9
10 enum MessageSource { 10 enum MessageSource {
(...skipping 11 matching lines...) Expand all
22 }; 22 };
23 23
24 enum MessageLevel { 24 enum MessageLevel {
25 DebugMessageLevel = 4, 25 DebugMessageLevel = 4,
26 LogMessageLevel = 1, 26 LogMessageLevel = 1,
27 InfoMessageLevel = 5, 27 InfoMessageLevel = 5,
28 WarningMessageLevel = 2, 28 WarningMessageLevel = 2,
29 ErrorMessageLevel = 3 29 ErrorMessageLevel = 3
30 }; 30 };
31 31
32 // TODO(dgozman): move from public to private.
33 enum MessageType {
34 LogMessageType = 1,
35 DirMessageType,
36 DirXMLMessageType,
37 TableMessageType,
38 TraceMessageType,
39 StartGroupMessageType,
40 StartGroupCollapsedMessageType,
41 EndGroupMessageType,
42 ClearMessageType,
43 AssertMessageType,
44 TimeEndMessageType,
45 CountMessageType
46 };
47
48 } 32 }
49 33
50 #endif // !defined(V8ConsoleTypes_h) 34 #endif // !defined(V8ConsoleTypes_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698