summaryrefslogtreecommitdiffstats
path: root/base/threading
diff options
context:
space:
mode:
authorjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-25 02:18:13 +0000
committerjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-25 02:18:13 +0000
commit6ebed4ca8ba16c970861541e67cec3b555a27d30 (patch)
tree22b2fa7f1826160a89ed1e3a4a7e740f79639564 /base/threading
parentdb5021e9f602cfcda606f06309d12930f9a0d527 (diff)
downloadchromium_src-6ebed4ca8ba16c970861541e67cec3b555a27d30.zip
chromium_src-6ebed4ca8ba16c970861541e67cec3b555a27d30.tar.gz
chromium_src-6ebed4ca8ba16c970861541e67cec3b555a27d30.tar.bz2
Comment out unused parameter names in function definitions,
to adhere to the C++ Style Guide. Landing for roubert@google.com, original review http://codereview.chromium.org/6485028/ BUG=none TEST=none Review URL: http://codereview.chromium.org/6580049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76017 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/threading')
-rw-r--r--base/threading/platform_thread_posix.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/threading/platform_thread_posix.cc b/base/threading/platform_thread_posix.cc
index 8452909..103145a 100644
--- a/base/threading/platform_thread_posix.cc
+++ b/base/threading/platform_thread_posix.cc
@@ -189,7 +189,7 @@ void PlatformThread::SetName(const char* name) {
// Mac is implemented in platform_thread_mac.mm.
#else
// static
-void PlatformThread::SetName(const char* name) {
+void PlatformThread::SetName(const char* /*name*/) {
// Leave it unimplemented.
// (This should be relatively simple to implement for the BSDs; I