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

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

Issue 1283183002: Realize IWYU pattern for frames-inl.h header. (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
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/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/debug/debug.h" 7 #include "src/debug/debug.h"
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.h" 15 #include "src/compiler.h"
16 #include "src/deoptimizer.h" 16 #include "src/deoptimizer.h"
17 #include "src/execution.h" 17 #include "src/execution.h"
18 #include "src/frames-inl.h"
18 #include "src/full-codegen/full-codegen.h" 19 #include "src/full-codegen/full-codegen.h"
19 #include "src/global-handles.h" 20 #include "src/global-handles.h"
20 #include "src/list.h" 21 #include "src/list.h"
21 #include "src/log.h" 22 #include "src/log.h"
22 #include "src/messages.h" 23 #include "src/messages.h"
23 #include "src/snapshot/natives.h" 24 #include "src/snapshot/natives.h"
24 25
25 #include "include/v8-debug.h" 26 #include "include/v8-debug.h"
26 27
27 namespace v8 { 28 namespace v8 {
(...skipping 2781 matching lines...) Expand 10 before | Expand all | Expand 10 after
2809 } 2810 }
2810 2811
2811 2812
2812 void LockingCommandMessageQueue::Clear() { 2813 void LockingCommandMessageQueue::Clear() {
2813 base::LockGuard<base::Mutex> lock_guard(&mutex_); 2814 base::LockGuard<base::Mutex> lock_guard(&mutex_);
2814 queue_.Clear(); 2815 queue_.Clear();
2815 } 2816 }
2816 2817
2817 } // namespace internal 2818 } // namespace internal
2818 } // namespace v8 2819 } // namespace v8
OLDNEW
« no previous file with comments | « src/debug/debug.h ('k') | src/debug/debug-evaluate.cc » ('j') | src/debug/ia32/debug-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698