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

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.cpp

Issue 2238423002: [DevTools] Generate all files in inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2240663003
Patch Set: Created 4 years, 4 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 "platform/v8_inspector/V8StackTraceImpl.h" 5 #include "platform/v8_inspector/V8StackTraceImpl.h"
6 6
7 #include "platform/inspector_protocol/Platform.h"
8 #include "platform/inspector_protocol/String16.h"
9 #include "platform/v8_inspector/V8Debugger.h" 7 #include "platform/v8_inspector/V8Debugger.h"
10 #include "platform/v8_inspector/V8StringUtil.h" 8 #include "platform/v8_inspector/V8StringUtil.h"
11 9
12 #include <v8-debug.h> 10 #include <v8-debug.h>
13 #include <v8-profiler.h> 11 #include <v8-profiler.h>
14 #include <v8-version.h> 12 #include <v8-version.h>
15 13
16 namespace blink { 14 namespace blink {
17 15
18 namespace { 16 namespace {
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 stackTrace.append(':'); 256 stackTrace.append(':');
259 stackTrace.append(String16::fromInteger(frame.lineNumber())); 257 stackTrace.append(String16::fromInteger(frame.lineNumber()));
260 stackTrace.append(':'); 258 stackTrace.append(':');
261 stackTrace.append(String16::fromInteger(frame.columnNumber())); 259 stackTrace.append(String16::fromInteger(frame.columnNumber()));
262 stackTrace.append(')'); 260 stackTrace.append(')');
263 } 261 }
264 return stackTrace.toString(); 262 return stackTrace.toString();
265 } 263 }
266 264
267 } // namespace blink 265 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698