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

Side by Side Diff: base/trace_event/memory_infra_background_whitelist.cc

Issue 2779733002: [HttpCache] Store some memcache info to memory dumps for debugging (Closed)
Patch Set: Whitelist strings Created 3 years, 8 months 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 // 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
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
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
OLDNEW
« no previous file with comments | « no previous file | content/browser/cache_storage/cache_storage_cache_unittest.cc » ('j') | net/disk_cache/backend_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698