summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorgavinp@chromium.org <gavinp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-05 18:22:32 +0000
committergavinp@chromium.org <gavinp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-05 18:22:32 +0000
commit37fad6b194217278d700f40fd6ea2b09d6a86535 (patch)
treec24608714eb8b82006069ab10b6b0b333cefcae6 /net
parentd0679ae10c723e01958e1122ed6e41a258be2048 (diff)
downloadchromium_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.cc2
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;