Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 ConsoleTypes_h | 5 #ifndef ConsoleTypes_h |
| 6 #define ConsoleTypes_h | 6 #define ConsoleTypes_h |
| 7 | 7 |
| 8 namespace blink { | 8 namespace blink { |
| 9 | 9 |
| 10 enum MessageSource { | 10 enum MessageSource { |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 22 kViolationMessageSource, | 22 kViolationMessageSource, |
| 23 kInterventionMessageSource | 23 kInterventionMessageSource |
| 24 }; | 24 }; |
| 25 | 25 |
| 26 enum MessageLevel { | 26 enum MessageLevel { |
| 27 kVerboseMessageLevel, | 27 kVerboseMessageLevel, |
| 28 kInfoMessageLevel, | 28 kInfoMessageLevel, |
| 29 kWarningMessageLevel, | 29 kWarningMessageLevel, |
| 30 kErrorMessageLevel | 30 kErrorMessageLevel |
| 31 }; | 31 }; |
| 32 } | 32 } // namespace blink |
|
Nico
2017/06/15 20:28:09
whoa
Dan Beam
2017/06/15 22:54:41
Acknowledged.
| |
| 33 | 33 |
| 34 #endif // !defined(ConsoleTypes_h) | 34 #endif // !defined(ConsoleTypes_h) |
| OLD | NEW |