| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "malloc/metadata_fragmentation_caches", | 64 "malloc/metadata_fragmentation_caches", |
| 65 "net/http_network_session_0x?", | 65 "net/http_network_session_0x?", |
| 66 "net/http_network_session_0x?/quic_stream_factory", | 66 "net/http_network_session_0x?/quic_stream_factory", |
| 67 "net/http_network_session_0x?/socket_pool", | 67 "net/http_network_session_0x?/socket_pool", |
| 68 "net/http_network_session_0x?/spdy_session_pool", | 68 "net/http_network_session_0x?/spdy_session_pool", |
| 69 "net/http_network_session_0x?/stream_factory", | 69 "net/http_network_session_0x?/stream_factory", |
| 70 "net/sdch_manager_0x?", | 70 "net/sdch_manager_0x?", |
| 71 "net/ssl_session_cache", | 71 "net/ssl_session_cache", |
| 72 "net/url_request_context_0x?", | 72 "net/url_request_context_0x?", |
| 73 "net/url_request_context_0x?/http_cache", | 73 "net/url_request_context_0x?/http_cache", |
| 74 "net/url_request_context_0x?/http_cache/memory_backend", |
| 75 "net/url_request_context_0x?/http_cache/simple_backend", |
| 74 "net/url_request_context_0x?/http_network_session", | 76 "net/url_request_context_0x?/http_network_session", |
| 75 "net/url_request_context_0x?/sdch_manager", | 77 "net/url_request_context_0x?/sdch_manager", |
| 76 "web_cache/Image_resources", | 78 "web_cache/Image_resources", |
| 77 "web_cache/CSS stylesheet_resources", | 79 "web_cache/CSS stylesheet_resources", |
| 78 "web_cache/Script_resources", | 80 "web_cache/Script_resources", |
| 79 "web_cache/XSL stylesheet_resources", | 81 "web_cache/XSL stylesheet_resources", |
| 80 "web_cache/Font_resources", | 82 "web_cache/Font_resources", |
| 81 "web_cache/Other_resources", | 83 "web_cache/Other_resources", |
| 82 "partition_alloc/allocated_objects", | 84 "partition_alloc/allocated_objects", |
| 83 "partition_alloc/partitions", | 85 "partition_alloc/partitions", |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 void SetDumpProviderWhitelistForTesting(const char* const* list) { | 191 void SetDumpProviderWhitelistForTesting(const char* const* list) { |
| 190 g_dump_provider_whitelist = list; | 192 g_dump_provider_whitelist = list; |
| 191 } | 193 } |
| 192 | 194 |
| 193 void SetAllocatorDumpNameWhitelistForTesting(const char* const* list) { | 195 void SetAllocatorDumpNameWhitelistForTesting(const char* const* list) { |
| 194 g_allocator_dump_name_whitelist = list; | 196 g_allocator_dump_name_whitelist = list; |
| 195 } | 197 } |
| 196 | 198 |
| 197 } // namespace trace_event | 199 } // namespace trace_event |
| 198 } // namespace base | 200 } // namespace base |
| OLD | NEW |