| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 #include "platform/heap/CallbackStack.h" | 37 #include "platform/heap/CallbackStack.h" |
| 38 #include "platform/heap/MarkingVisitor.h" | 38 #include "platform/heap/MarkingVisitor.h" |
| 39 #include "platform/heap/PageMemory.h" | 39 #include "platform/heap/PageMemory.h" |
| 40 #include "platform/heap/PagePool.h" | 40 #include "platform/heap/PagePool.h" |
| 41 #include "platform/heap/SafePoint.h" | 41 #include "platform/heap/SafePoint.h" |
| 42 #include "platform/heap/ThreadState.h" | 42 #include "platform/heap/ThreadState.h" |
| 43 #include "public/platform/Platform.h" | 43 #include "public/platform/Platform.h" |
| 44 #include "public/platform/WebMemoryAllocatorDump.h" | 44 #include "public/platform/WebMemoryAllocatorDump.h" |
| 45 #include "public/platform/WebProcessMemoryDump.h" | 45 #include "public/platform/WebProcessMemoryDump.h" |
| 46 #include "wtf/Assertions.h" | 46 #include "wtf/Assertions.h" |
| 47 #include "wtf/CurrentTime.h" |
| 47 #include "wtf/DataLog.h" | 48 #include "wtf/DataLog.h" |
| 48 #include "wtf/LeakAnnotations.h" | 49 #include "wtf/LeakAnnotations.h" |
| 49 #include "wtf/MainThread.h" | 50 #include "wtf/MainThread.h" |
| 50 #include "wtf/Partitions.h" | 51 #include "wtf/Partitions.h" |
| 51 | 52 |
| 52 namespace blink { | 53 namespace blink { |
| 53 | 54 |
| 54 class GCForbiddenScope final { | 55 class GCForbiddenScope final { |
| 55 DISALLOW_NEW(); | 56 DISALLOW_NEW(); |
| 56 public: | 57 public: |
| (...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 723 size_t Heap::s_wrapperCount = 0; | 724 size_t Heap::s_wrapperCount = 0; |
| 724 size_t Heap::s_wrapperCountAtLastGC = 0; | 725 size_t Heap::s_wrapperCountAtLastGC = 0; |
| 725 size_t Heap::s_collectedWrapperCount = 0; | 726 size_t Heap::s_collectedWrapperCount = 0; |
| 726 size_t Heap::s_partitionAllocSizeAtLastGC = 0; | 727 size_t Heap::s_partitionAllocSizeAtLastGC = 0; |
| 727 double Heap::s_estimatedMarkingTimePerByte = 0.0; | 728 double Heap::s_estimatedMarkingTimePerByte = 0.0; |
| 728 #if ENABLE(ASSERT) | 729 #if ENABLE(ASSERT) |
| 729 uint16_t Heap::s_gcGeneration = 0; | 730 uint16_t Heap::s_gcGeneration = 0; |
| 730 #endif | 731 #endif |
| 731 | 732 |
| 732 } // namespace blink | 733 } // namespace blink |
| OLD | NEW |