diff options
author | gavinp@chromium.org <gavinp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-05 18:22:32 +0000 |
---|---|---|
committer | gavinp@chromium.org <gavinp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-05 18:22:32 +0000 |
commit | 37fad6b194217278d700f40fd6ea2b09d6a86535 (patch) | |
tree | c24608714eb8b82006069ab10b6b0b333cefcae6 /net | |
parent | d0679ae10c723e01958e1122ed6e41a258be2048 (diff) | |
download | chromium_src-37fad6b194217278d700f40fd6ea2b09d6a86535.zip chromium_src-37fad6b194217278d700f40fd6ea2b09d6a86535.tar.gz chromium_src-37fad6b194217278d700f40fd6ea2b09d6a86535.tar.bz2 |
Rename SimpleCache worker pool threads.
The name SimpleCacheWorker wasn't a great choice, as in the profiler,
this was showing up as SimpleCacheWorkerWorker. This new name should
be a bit less silly in the profiler.
R=rdsmith
BUG=None
Review URL: https://chromiumcodereview.appspot.com/22053002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215643 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/disk_cache/simple/simple_backend_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/disk_cache/simple/simple_backend_impl.cc b/net/disk_cache/simple/simple_backend_impl.cc index 1a0fef7..59d9c77 100644 --- a/net/disk_cache/simple/simple_backend_impl.cc +++ b/net/disk_cache/simple/simple_backend_impl.cc @@ -48,7 +48,7 @@ namespace { // on concurrent IO (as we use one thread per IO request). const int kDefaultMaxWorkerThreads = 50; -const char kThreadNamePrefix[] = "SimpleCacheWorker"; +const char kThreadNamePrefix[] = "SimpleCache"; // Cache size when all other size heuristics failed. const uint64 kDefaultCacheSize = 80 * 1024 * 1024; |