Index: third_party/WebKit/Source/core/inspector/ConsoleTypes.h |
diff --git a/third_party/WebKit/Source/core/inspector/ConsoleTypes.h b/third_party/WebKit/Source/core/inspector/ConsoleTypes.h |
index f4e9ade8f95558ecfb47a3cf7db8770cb61bfd8f..fa13f1c81a0b657ecc68e02db98c300e93092fcb 100644 |
--- a/third_party/WebKit/Source/core/inspector/ConsoleTypes.h |
+++ b/third_party/WebKit/Source/core/inspector/ConsoleTypes.h |
@@ -1 +1,28 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef ConsoleTypes_h |
+#define ConsoleTypes_h |
+ |
#include "platform/v8_inspector/public/V8ConsoleTypes.h" |
+ |
+namespace blink { |
+ |
+enum MessageSource { |
+ XMLMessageSource, |
+ JSMessageSource, |
+ NetworkMessageSource, |
+ ConsoleAPIMessageSource, |
+ StorageMessageSource, |
+ AppCacheMessageSource, |
+ RenderingMessageSource, |
+ SecurityMessageSource, |
+ OtherMessageSource, |
+ DeprecationMessageSource, |
+ WorkerMessageSource |
+}; |
+ |
+} |
+ |
+#endif // !defined(ConsoleTypes_h) |