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

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

Issue 2399903004: Add LevelDB database names to tracing path for easier debugging (Closed)
Patch Set: Add missing databases. Created 4 years, 2 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
« no previous file with comments | « no previous file | components/leveldb_proto/leveldb_database.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
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?",
52 "leveldb/value_store/Extensions.Database.Open.Settings/0x?", 58 "leveldb/value_store/Extensions.Database.Open.Settings/0x?",
53 "leveldb/value_store/Extensions.Database.Open.Rules/0x?", 59 "leveldb/value_store/Extensions.Database.Open.Rules/0x?",
54 "leveldb/value_store/Extensions.Database.Open.State/0x?", 60 "leveldb/value_store/Extensions.Database.Open.State/0x?",
55 "leveldb/value_store/Extensions.Database.Open/0x?", 61 "leveldb/value_store/Extensions.Database.Open/0x?",
56 "leveldb/value_store/Extensions.Database.Restore/0x?", 62 "leveldb/value_store/Extensions.Database.Restore/0x?",
57 "leveldb/value_store/Extensions.Database.Value.Restore/0x?", 63 "leveldb/value_store/Extensions.Database.Value.Restore/0x?",
58 "malloc", 64 "malloc",
59 "malloc/allocated_objects", 65 "malloc/allocated_objects",
60 "malloc/metadata_fragmentation_caches", 66 "malloc/metadata_fragmentation_caches",
61 "web_cache/Image_resources", 67 "web_cache/Image_resources",
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 void SetDumpProviderWhitelistForTesting(const char* const* list) { 137 void SetDumpProviderWhitelistForTesting(const char* const* list) {
132 g_dump_provider_whitelist = list; 138 g_dump_provider_whitelist = list;
133 } 139 }
134 140
135 void SetAllocatorDumpNameWhitelistForTesting(const char* const* list) { 141 void SetAllocatorDumpNameWhitelistForTesting(const char* const* list) {
136 g_allocator_dump_name_whitelist = list; 142 g_allocator_dump_name_whitelist = list;
137 } 143 }
138 144
139 } // namespace trace_event 145 } // namespace trace_event
140 } // namespace base 146 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | components/leveldb_proto/leveldb_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698