| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/trace_event/memory_infra_background_whitelist.h" | 5 #include "base/trace_event/memory_infra_background_whitelist.h" |
| 6 | 6 |
| 7 #include <ctype.h> | 7 #include <ctype.h> |
| 8 #include <string.h> | 8 #include <string.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "blink_gc", | 42 "blink_gc", |
| 43 "blink_gc/allocated_objects", | 43 "blink_gc/allocated_objects", |
| 44 "discardable", | 44 "discardable", |
| 45 "discardable/child_0x?", | 45 "discardable/child_0x?", |
| 46 "dom_storage/0x?/cache_size", | 46 "dom_storage/0x?/cache_size", |
| 47 "dom_storage/session_storage_0x?", | 47 "dom_storage/session_storage_0x?", |
| 48 "java_heap", | 48 "java_heap", |
| 49 "java_heap/allocated_objects", | 49 "java_heap/allocated_objects", |
| 50 "leveldb/index_db/0x?", | 50 "leveldb/index_db/0x?", |
| 51 "leveldb/leveldb_proto/0x?", | 51 "leveldb/leveldb_proto/0x?", |
| 52 "leveldb/leveldb_proto/BudgetManager/0x?", | |
| 53 "leveldb/leveldb_proto/DomDistillerStore/0x?", | |
| 54 "leveldb/leveldb_proto/GCMKeyStore/0x?", | |
| 55 "leveldb/leveldb_proto/ImageManager/0x?", | |
| 56 "leveldb/leveldb_proto/NTPSnippetImages/0x?", | |
| 57 "leveldb/leveldb_proto/NTPSnippets/0x?", | |
| 58 "leveldb/value_store/Extensions.Database.Open.Settings/0x?", | 52 "leveldb/value_store/Extensions.Database.Open.Settings/0x?", |
| 59 "leveldb/value_store/Extensions.Database.Open.Rules/0x?", | 53 "leveldb/value_store/Extensions.Database.Open.Rules/0x?", |
| 60 "leveldb/value_store/Extensions.Database.Open.State/0x?", | 54 "leveldb/value_store/Extensions.Database.Open.State/0x?", |
| 61 "leveldb/value_store/Extensions.Database.Open/0x?", | 55 "leveldb/value_store/Extensions.Database.Open/0x?", |
| 62 "leveldb/value_store/Extensions.Database.Restore/0x?", | 56 "leveldb/value_store/Extensions.Database.Restore/0x?", |
| 63 "leveldb/value_store/Extensions.Database.Value.Restore/0x?", | 57 "leveldb/value_store/Extensions.Database.Value.Restore/0x?", |
| 64 "malloc", | 58 "malloc", |
| 65 "malloc/allocated_objects", | 59 "malloc/allocated_objects", |
| 66 "malloc/metadata_fragmentation_caches", | 60 "malloc/metadata_fragmentation_caches", |
| 67 "web_cache/Image_resources", | 61 "web_cache/Image_resources", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 void SetDumpProviderWhitelistForTesting(const char* const* list) { | 131 void SetDumpProviderWhitelistForTesting(const char* const* list) { |
| 138 g_dump_provider_whitelist = list; | 132 g_dump_provider_whitelist = list; |
| 139 } | 133 } |
| 140 | 134 |
| 141 void SetAllocatorDumpNameWhitelistForTesting(const char* const* list) { | 135 void SetAllocatorDumpNameWhitelistForTesting(const char* const* list) { |
| 142 g_allocator_dump_name_whitelist = list; | 136 g_allocator_dump_name_whitelist = list; |
| 143 } | 137 } |
| 144 | 138 |
| 145 } // namespace trace_event | 139 } // namespace trace_event |
| 146 } // namespace base | 140 } // namespace base |
| OLD | NEW |