| OLD | NEW |
| 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 "src/api.h" | 7 #include "src/api.h" |
| 8 #include "src/arguments.h" | 8 #include "src/arguments.h" |
| 9 #include "src/bootstrapper.h" | 9 #include "src/bootstrapper.h" |
| 10 #include "src/code-stubs.h" | 10 #include "src/code-stubs.h" |
| 11 #include "src/codegen.h" | 11 #include "src/codegen.h" |
| 12 #include "src/compilation-cache.h" | 12 #include "src/compilation-cache.h" |
| 13 #include "src/compiler.h" | 13 #include "src/compiler.h" |
| 14 #include "src/deoptimizer.h" | 14 #include "src/deoptimizer.h" |
| 15 #include "src/execution.h" | 15 #include "src/execution.h" |
| 16 #include "src/frames-inl.h" | 16 #include "src/frames-inl.h" |
| 17 #include "src/full-codegen/full-codegen.h" | 17 #include "src/full-codegen/full-codegen.h" |
| 18 #include "src/global-handles.h" | 18 #include "src/global-handles.h" |
| 19 #include "src/isolate-inl.h" |
| 19 #include "src/list.h" | 20 #include "src/list.h" |
| 20 #include "src/log.h" | 21 #include "src/log.h" |
| 21 #include "src/messages.h" | 22 #include "src/messages.h" |
| 22 #include "src/snapshot/natives.h" | 23 #include "src/snapshot/natives.h" |
| 23 | 24 |
| 24 #include "include/v8-debug.h" | 25 #include "include/v8-debug.h" |
| 25 | 26 |
| 26 namespace v8 { | 27 namespace v8 { |
| 27 namespace internal { | 28 namespace internal { |
| 28 | 29 |
| (...skipping 2589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2618 } | 2619 } |
| 2619 | 2620 |
| 2620 | 2621 |
| 2621 void LockingCommandMessageQueue::Clear() { | 2622 void LockingCommandMessageQueue::Clear() { |
| 2622 base::LockGuard<base::Mutex> lock_guard(&mutex_); | 2623 base::LockGuard<base::Mutex> lock_guard(&mutex_); |
| 2623 queue_.Clear(); | 2624 queue_.Clear(); |
| 2624 } | 2625 } |
| 2625 | 2626 |
| 2626 } // namespace internal | 2627 } // namespace internal |
| 2627 } // namespace v8 | 2628 } // namespace v8 |
| OLD | NEW |