summaryrefslogtreecommitdiffstats
path: root/base/ref_counted.h
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-28 16:48:10 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-28 16:48:10 +0000
commit15f8012b270d0eb76fe7e57e8e5e54b12ef68223 (patch)
tree3f98fa67543df030c81b5ed1c054bf328ccac3cc /base/ref_counted.h
parentb866a02d3444bcc56199533fa264827ed73601cd (diff)
downloadchromium_src-15f8012b270d0eb76fe7e57e8e5e54b12ef68223.zip
chromium_src-15f8012b270d0eb76fe7e57e8e5e54b12ef68223.tar.gz
chromium_src-15f8012b270d0eb76fe7e57e8e5e54b12ef68223.tar.bz2
Fix lines longer than 80 characters.
BUG=50266 TEST=None Review URL: http://codereview.chromium.org/3013038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53958 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/ref_counted.h')
-rw-r--r--base/ref_counted.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/base/ref_counted.h b/base/ref_counted.h
index 9fad55f..e2b2ed2 100644
--- a/base/ref_counted.h
+++ b/base/ref_counted.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 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.
@@ -110,7 +110,8 @@ struct DefaultRefCountedThreadSafeTraits {
// Delete through RefCountedThreadSafe to make child classes only need to be
// friend with RefCountedThreadSafe instead of this struct, which is an
// implementation detail.
- RefCountedThreadSafe<T, DefaultRefCountedThreadSafeTraits>::DeleteInternal(x);
+ RefCountedThreadSafe<T,
+ DefaultRefCountedThreadSafeTraits>::DeleteInternal(x);
}
};