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

Side by Side Diff: third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp

Issue 2817533005: Rewrite references to "wtf/" to "platform/wtf/" in core/inspector. (Closed)
Patch Set: Rebase. Created 3 years, 8 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698