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

Unified Diff: third_party/WebKit/Source/core/inspector/ConsoleTypes.h

Issue 2151273003: [DevTools] Move browser logging from Console domain to Log domain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@internals-method
Patch Set: protocol improvements 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 side-by-side diff with in-line comments
Download patch
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)

Powered by Google App Engine
This is Rietveld 408576698