| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "core/inspector/ConsoleMessage.h" | 5 #include "core/inspector/ConsoleMessage.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/SourceLocation.h" | 7 #include "bindings/core/v8/SourceLocation.h" |
| 8 #include "wtf/CurrentTime.h" | 8 #include "platform/wtf/CurrentTime.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| 11 | 11 |
| 12 // static | 12 // static |
| 13 ConsoleMessage* ConsoleMessage::CreateForRequest( | 13 ConsoleMessage* ConsoleMessage::CreateForRequest( |
| 14 MessageSource source, | 14 MessageSource source, |
| 15 MessageLevel level, | 15 MessageLevel level, |
| 16 const String& message, | 16 const String& message, |
| 17 const String& url, | 17 const String& url, |
| 18 unsigned long request_identifier) { | 18 unsigned long request_identifier) { |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 return message_; | 88 return message_; |
| 89 } | 89 } |
| 90 | 90 |
| 91 const String& ConsoleMessage::WorkerId() const { | 91 const String& ConsoleMessage::WorkerId() const { |
| 92 return worker_id_; | 92 return worker_id_; |
| 93 } | 93 } |
| 94 | 94 |
| 95 DEFINE_TRACE(ConsoleMessage) {} | 95 DEFINE_TRACE(ConsoleMessage) {} |
| 96 | 96 |
| 97 } // namespace blink | 97 } // namespace blink |
| OLD | NEW |