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

Side by Side Diff: src/runtime/runtime-debug.cc

Issue 1293053004: Remove grab-bag includes of v8.h from runtime entries. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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
« no previous file with comments | « src/runtime/runtime-date.cc ('k') | src/runtime/runtime-forin.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project 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 "src/v8.h" 5 #include "src/runtime/runtime-utils.h"
6 6
7 #include "src/arguments.h" 7 #include "src/arguments.h"
8 #include "src/debug/debug.h" 8 #include "src/debug/debug.h"
9 #include "src/debug/debug-evaluate.h" 9 #include "src/debug/debug-evaluate.h"
10 #include "src/debug/debug-frames.h" 10 #include "src/debug/debug-frames.h"
11 #include "src/debug/debug-scopes.h" 11 #include "src/debug/debug-scopes.h"
12 #include "src/frames-inl.h" 12 #include "src/frames-inl.h"
13 #include "src/runtime/runtime.h" 13 #include "src/runtime/runtime.h"
14 #include "src/runtime/runtime-utils.h"
15 14
16 namespace v8 { 15 namespace v8 {
17 namespace internal { 16 namespace internal {
18 17
19 RUNTIME_FUNCTION(Runtime_DebugBreak) { 18 RUNTIME_FUNCTION(Runtime_DebugBreak) {
20 SealHandleScope shs(isolate); 19 SealHandleScope shs(isolate);
21 DCHECK(args.length() == 0); 20 DCHECK(args.length() == 0);
22 // Get the top-most JavaScript frame. 21 // Get the top-most JavaScript frame.
23 JavaScriptFrameIterator it(isolate); 22 JavaScriptFrameIterator it(isolate);
24 isolate->debug()->Break(args, it.frame()); 23 isolate->debug()->Break(args, it.frame());
(...skipping 1698 matching lines...) Expand 10 before | Expand all | Expand 10 after
1723 return *isolate->factory()->undefined_value(); 1722 return *isolate->factory()->undefined_value();
1724 } 1723 }
1725 1724
1726 1725
1727 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { 1726 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) {
1728 UNIMPLEMENTED(); 1727 UNIMPLEMENTED();
1729 return NULL; 1728 return NULL;
1730 } 1729 }
1731 } // namespace internal 1730 } // namespace internal
1732 } // namespace v8 1731 } // namespace v8
OLDNEW
« no previous file with comments | « src/runtime/runtime-date.cc ('k') | src/runtime/runtime-forin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698