 Chromium Code Reviews
 Chromium Code Reviews Issue 1404523002:
  [heap] inline allocation steps refactor  (Closed) 
  Base URL: https://chromium.googlesource.com/v8/v8.git@master
    
  
    Issue 1404523002:
  [heap] inline allocation steps refactor  (Closed) 
  Base URL: https://chromium.googlesource.com/v8/v8.git@master| Index: src/heap/incremental-marking.h | 
| diff --git a/src/heap/incremental-marking.h b/src/heap/incremental-marking.h | 
| index ee1290e6c89de06b7be1a1b255ac971045a7e3cb..5aea6e4f4a4c68ac312254d73957c1022eba2d6c 100644 | 
| --- a/src/heap/incremental-marking.h | 
| +++ b/src/heap/incremental-marking.h | 
| @@ -16,6 +16,8 @@ namespace internal { | 
| // Forward declarations. | 
| class MarkBit; | 
| class PagedSpace; | 
| +class IncrementalMarking; | 
| +class InlineAllocationObserver; | 
| 
Hannes Payer (out of office)
2015/10/22 09:14:14
alphabetic order
 
ofrobots
2015/10/26 21:55:01
Done.
 | 
| class IncrementalMarking { | 
| public: | 
| @@ -246,6 +248,8 @@ class IncrementalMarking { | 
| Heap* heap_; | 
| + InlineAllocationObserver* observer_; | 
| + | 
| State state_; | 
| bool is_compacting_; |