summaryrefslogtreecommitdiffstats
path: root/base/singleton.h
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-02 22:50:25 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-02 22:50:25 +0000
commit730fb13db106c6e9b29314b10221959bc4706650 (patch)
tree40801770d2db9afe260134b3ad4a93edf0b7b804 /base/singleton.h
parentd1f2e93ff399c077d58e02c3799bb2bd817735fa (diff)
downloadchromium_src-730fb13db106c6e9b29314b10221959bc4706650.zip
chromium_src-730fb13db106c6e9b29314b10221959bc4706650.tar.gz
chromium_src-730fb13db106c6e9b29314b10221959bc4706650.tar.bz2
linux: call PR_Init on UI thread
It complains about being shutdown on the wrong thread otherwise. BUG=18410 Review URL: http://codereview.chromium.org/178062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25259 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/singleton.h')
-rw-r--r--base/singleton.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/singleton.h b/base/singleton.h
index afc2f0d..3272fce 100644
--- a/base/singleton.h
+++ b/base/singleton.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -70,7 +70,7 @@ struct LeakySingletonTraits : public DefaultSingletonTraits<Type> {
//
// On every platform, if Traits::RAE is true, the singleton will be destroyed at
// process exit. More precisely it uses base::AtExitManager which requires an
-// object of this type to be instanciated. AtExitManager mimics the semantics
+// object of this type to be instantiated. AtExitManager mimics the semantics
// of atexit() such as LIFO order but under Windows is safer to call. For more
// information see at_exit.h.
//