commit | 2b18084d40261a356b377dd6aa4a5bd8bdd2a285 | [log] [tgz] |
---|---|---|
author | stefan <stefan@webrtc.org> | Mon Sep 14 07:53:38 2015 -0700 |
committer | Commit bot <commit-bot@chromium.org> | Mon Sep 14 14:53:46 2015 +0000 |
tree | 2d29935ab7b1b840ea14ac61040cc1838f1eb2ed | |
parent | ea06a58f4018d85510acd96cf0304cb413a800b4 [diff] [blame] |
Only allow static strings as ProcessThread names. Review URL: https://codereview.webrtc.org/1336293002 Cr-Commit-Position: refs/heads/master@{#9932}
diff --git a/webrtc/modules/utility/source/process_thread_impl.h b/webrtc/modules/utility/source/process_thread_impl.h index 53b5d59..5101ea9 100644 --- a/webrtc/modules/utility/source/process_thread_impl.h +++ b/webrtc/modules/utility/source/process_thread_impl.h
@@ -76,7 +76,7 @@ // TODO(tommi): Support delayed tasks. std::queue<ProcessTask*> queue_; bool stop_; - std::string thread_name_; + const char* thread_name_; }; } // namespace webrtc