| OLD | NEW | 
|---|
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. | 
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without | 
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are | 
| 4 // met: | 4 // met: | 
| 5 // | 5 // | 
| 6 //     * Redistributions of source code must retain the above copyright | 6 //     * Redistributions of source code must retain the above copyright | 
| 7 //       notice, this list of conditions and the following disclaimer. | 7 //       notice, this list of conditions and the following disclaimer. | 
| 8 //     * Redistributions in binary form must reproduce the above | 8 //     * Redistributions in binary form must reproduce the above | 
| 9 //       copyright notice, this list of conditions and the following | 9 //       copyright notice, this list of conditions and the following | 
| 10 //       disclaimer in the documentation and/or other materials provided | 10 //       disclaimer in the documentation and/or other materials provided | 
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 155 class Smi; | 155 class Smi; | 
| 156 template <typename Config, class Allocator = FreeStoreAllocationPolicy> | 156 template <typename Config, class Allocator = FreeStoreAllocationPolicy> | 
| 157     class SplayTree; | 157     class SplayTree; | 
| 158 class String; | 158 class String; | 
| 159 class Name; | 159 class Name; | 
| 160 class Struct; | 160 class Struct; | 
| 161 class Variable; | 161 class Variable; | 
| 162 class RelocInfo; | 162 class RelocInfo; | 
| 163 class Deserializer; | 163 class Deserializer; | 
| 164 class MessageLocation; | 164 class MessageLocation; | 
| 165 class ObjectGroup; |  | 
| 166 class VirtualMemory; | 165 class VirtualMemory; | 
| 167 class Mutex; | 166 class Mutex; | 
| 168 | 167 | 
| 169 typedef bool (*WeakSlotCallback)(Object** pointer); | 168 typedef bool (*WeakSlotCallback)(Object** pointer); | 
| 170 | 169 | 
| 171 typedef bool (*WeakSlotCallbackWithHeap)(Heap* heap, Object** pointer); | 170 typedef bool (*WeakSlotCallbackWithHeap)(Heap* heap, Object** pointer); | 
| 172 | 171 | 
| 173 // ----------------------------------------------------------------------------- | 172 // ----------------------------------------------------------------------------- | 
| 174 // Miscellaneous | 173 // Miscellaneous | 
| 175 | 174 | 
| (...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 569 | 568 | 
| 570 enum ClearExceptionFlag { | 569 enum ClearExceptionFlag { | 
| 571   KEEP_EXCEPTION, | 570   KEEP_EXCEPTION, | 
| 572   CLEAR_EXCEPTION | 571   CLEAR_EXCEPTION | 
| 573 }; | 572 }; | 
| 574 | 573 | 
| 575 | 574 | 
| 576 } }  // namespace v8::internal | 575 } }  // namespace v8::internal | 
| 577 | 576 | 
| 578 #endif  // V8_V8GLOBALS_H_ | 577 #endif  // V8_V8GLOBALS_H_ | 
| OLD | NEW | 
|---|