blob: d919b3a51a229d57e1e7ac34454b07e451166da0 [file] [log] [blame]
// 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
namespace blink {
enum MessageSource {
XMLMessageSource,
JSMessageSource,
NetworkMessageSource,
ConsoleAPIMessageSource,
StorageMessageSource,
AppCacheMessageSource,
RenderingMessageSource,
SecurityMessageSource,
OtherMessageSource,
DeprecationMessageSource,
WorkerMessageSource,
ViolationMessageSource
};
enum MessageLevel {
DebugMessageLevel = 4,
LogMessageLevel = 1,
InfoMessageLevel = 5,
WarningMessageLevel = 2,
ErrorMessageLevel = 3
};
}
#endif // !defined(ConsoleTypes_h)