Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: third_party/WebKit/Source/platform/heap/Heap.cpp

Issue 1411603007: [Oilpan] Add use-after-free detector in Member<> Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 754 matching lines...) Expand 10 before | Expand all | Expand 10 after
765 size_t Heap::s_allocatedSpace = 0; 765 size_t Heap::s_allocatedSpace = 0;
766 size_t Heap::s_allocatedObjectSize = 0; 766 size_t Heap::s_allocatedObjectSize = 0;
767 size_t Heap::s_objectSizeAtLastGC = 0; 767 size_t Heap::s_objectSizeAtLastGC = 0;
768 size_t Heap::s_markedObjectSize = 0; 768 size_t Heap::s_markedObjectSize = 0;
769 size_t Heap::s_markedObjectSizeAtLastCompleteSweep = 0; 769 size_t Heap::s_markedObjectSizeAtLastCompleteSweep = 0;
770 size_t Heap::s_wrapperCount = 0; 770 size_t Heap::s_wrapperCount = 0;
771 size_t Heap::s_wrapperCountAtLastGC = 0; 771 size_t Heap::s_wrapperCountAtLastGC = 0;
772 size_t Heap::s_collectedWrapperCount = 0; 772 size_t Heap::s_collectedWrapperCount = 0;
773 size_t Heap::s_partitionAllocSizeAtLastGC = 0; 773 size_t Heap::s_partitionAllocSizeAtLastGC = 0;
774 double Heap::s_estimatedMarkingTimePerByte = 0.0; 774 double Heap::s_estimatedMarkingTimePerByte = 0.0;
775 #if ENABLE(ASSERT) 775 uint32_t Heap::s_gcGeneration = 0;
776 uint16_t Heap::s_gcGeneration = 0;
777 #endif
778 776
779 } // namespace blink 777 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698