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

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

Issue 2260483002: Include only stuff you need, part 3: includes in isolate.h. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
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
« no previous file with comments | « src/compiler.cc ('k') | src/execution.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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/debug/debug.h" 5 #include "src/debug/debug.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "src/api.h" 9 #include "src/api.h"
10 #include "src/arguments.h" 10 #include "src/arguments.h"
11 #include "src/bootstrapper.h" 11 #include "src/bootstrapper.h"
12 #include "src/code-stubs.h" 12 #include "src/code-stubs.h"
13 #include "src/codegen.h" 13 #include "src/codegen.h"
14 #include "src/compilation-cache.h" 14 #include "src/compilation-cache.h"
15 #include "src/compiler-dispatcher/optimizing-compile-dispatcher.h"
15 #include "src/compiler.h" 16 #include "src/compiler.h"
16 #include "src/deoptimizer.h" 17 #include "src/deoptimizer.h"
17 #include "src/execution.h" 18 #include "src/execution.h"
18 #include "src/frames-inl.h" 19 #include "src/frames-inl.h"
19 #include "src/full-codegen/full-codegen.h" 20 #include "src/full-codegen/full-codegen.h"
20 #include "src/global-handles.h" 21 #include "src/global-handles.h"
21 #include "src/globals.h" 22 #include "src/globals.h"
22 #include "src/interpreter/interpreter.h" 23 #include "src/interpreter/interpreter.h"
23 #include "src/isolate-inl.h" 24 #include "src/isolate-inl.h"
24 #include "src/list.h" 25 #include "src/list.h"
(...skipping 2540 matching lines...) Expand 10 before | Expand all | Expand 10 after
2565 } 2566 }
2566 2567
2567 2568
2568 void LockingCommandMessageQueue::Clear() { 2569 void LockingCommandMessageQueue::Clear() {
2569 base::LockGuard<base::Mutex> lock_guard(&mutex_); 2570 base::LockGuard<base::Mutex> lock_guard(&mutex_);
2570 queue_.Clear(); 2571 queue_.Clear();
2571 } 2572 }
2572 2573
2573 } // namespace internal 2574 } // namespace internal
2574 } // namespace v8 2575 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/execution.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698