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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/SourceLocation.cpp

Issue 2804753005: Rewrite references to "wtf/" to "platform/wtf/" in bindings. (Closed)
Patch Set: 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "bindings/core/v8/SourceLocation.h" 5 #include "bindings/core/v8/SourceLocation.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include "bindings/core/v8/V8Binding.h" 8 #include "bindings/core/v8/V8Binding.h"
9 #include "bindings/core/v8/V8BindingMacros.h" 9 #include "bindings/core/v8/V8BindingMacros.h"
10 #include "bindings/core/v8/V8PerIsolateData.h" 10 #include "bindings/core/v8/V8PerIsolateData.h"
11 #include "core/dom/Document.h" 11 #include "core/dom/Document.h"
12 #include "core/dom/ExecutionContext.h" 12 #include "core/dom/ExecutionContext.h"
13 #include "core/dom/ScriptableDocumentParser.h" 13 #include "core/dom/ScriptableDocumentParser.h"
14 #include "core/html/HTMLFrameOwnerElement.h" 14 #include "core/html/HTMLFrameOwnerElement.h"
15 #include "core/inspector/ThreadDebugger.h" 15 #include "core/inspector/ThreadDebugger.h"
16 #include "core/inspector/V8InspectorString.h" 16 #include "core/inspector/V8InspectorString.h"
17 #include "platform/ScriptForbiddenScope.h" 17 #include "platform/ScriptForbiddenScope.h"
18 #include "platform/instrumentation/tracing/TracedValue.h" 18 #include "platform/instrumentation/tracing/TracedValue.h"
19 #include "wtf/PtrUtil.h" 19 #include "platform/wtf/PtrUtil.h"
20 20
21 namespace blink { 21 namespace blink {
22 22
23 namespace { 23 namespace {
24 24
25 std::unique_ptr<v8_inspector::V8StackTrace> captureStackTrace(bool full) { 25 std::unique_ptr<v8_inspector::V8StackTrace> captureStackTrace(bool full) {
26 v8::Isolate* isolate = v8::Isolate::GetCurrent(); 26 v8::Isolate* isolate = v8::Isolate::GetCurrent();
27 ThreadDebugger* debugger = ThreadDebugger::from(isolate); 27 ThreadDebugger* debugger = ThreadDebugger::from(isolate);
28 if (!debugger || !isolate->InContext()) 28 if (!debugger || !isolate->InContext())
29 return nullptr; 29 return nullptr;
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 return m_stackTrace ? m_stackTrace->buildInspectorObject() : nullptr; 197 return m_stackTrace ? m_stackTrace->buildInspectorObject() : nullptr;
198 } 198 }
199 199
200 String SourceLocation::toString() const { 200 String SourceLocation::toString() const {
201 if (!m_stackTrace) 201 if (!m_stackTrace)
202 return String(); 202 return String();
203 return toCoreString(m_stackTrace->toString()); 203 return toCoreString(m_stackTrace->toString());
204 } 204 }
205 205
206 } // namespace blink 206 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/bindings/core/v8/SourceLocation.h ('k') | third_party/WebKit/Source/bindings/core/v8/ToV8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698