| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_CODE_OBSERVERS_H_ | 5 #ifndef RUNTIME_VM_CODE_OBSERVERS_H_ |
| 6 #define VM_CODE_OBSERVERS_H_ | 6 #define RUNTIME_VM_CODE_OBSERVERS_H_ |
| 7 | 7 |
| 8 #include "vm/globals.h" | 8 #include "vm/globals.h" |
| 9 #include "vm/allocation.h" | 9 #include "vm/allocation.h" |
| 10 | 10 |
| 11 namespace dart { | 11 namespace dart { |
| 12 | 12 |
| 13 #ifndef PRODUCT | 13 #ifndef PRODUCT |
| 14 | 14 |
| 15 class Mutex; | 15 class Mutex; |
| 16 | 16 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 private: | 64 private: |
| 65 static Mutex* mutex_; | 65 static Mutex* mutex_; |
| 66 static intptr_t observers_length_; | 66 static intptr_t observers_length_; |
| 67 static CodeObserver** observers_; | 67 static CodeObserver** observers_; |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 #endif // !PRODUCT | 70 #endif // !PRODUCT |
| 71 | 71 |
| 72 } // namespace dart | 72 } // namespace dart |
| 73 | 73 |
| 74 #endif // VM_CODE_OBSERVERS_H_ | 74 #endif // RUNTIME_VM_CODE_OBSERVERS_H_ |
| OLD | NEW |