summaryrefslogtreecommitdiffstats
path: root/chrome/common/property_bag.h
diff options
context:
space:
mode:
authorbrettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-10 03:37:36 +0000
committerbrettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-10 03:37:36 +0000
commitbcdae8c9c9d90889fa0ca6491ae191a9e2f944b4 (patch)
tree0ed85b29297e7d121b8507c7696db3f1f80ed9b6 /chrome/common/property_bag.h
parentc9b52d1d7faa57c4f904848ba336b67f760c6347 (diff)
downloadchromium_src-bcdae8c9c9d90889fa0ca6491ae191a9e2f944b4.zip
chromium_src-bcdae8c9c9d90889fa0ca6491ae191a9e2f944b4.tar.gz
chromium_src-bcdae8c9c9d90889fa0ca6491ae191a9e2f944b4.tar.bz2
Fix style fro last CL. I had extra space to prevent >> at the end of the template, but didn't remove them when I removed the innter template argument.
Review URL: http://codereview.chromium.org/13700 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6692 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/property_bag.h')
-rw-r--r--chrome/common/property_bag.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/property_bag.h b/chrome/common/property_bag.h
index f8817434..9965382 100644
--- a/chrome/common/property_bag.h
+++ b/chrome/common/property_bag.h
@@ -138,7 +138,7 @@ class PropertyAccessor : public PropertyAccessorBase {
PropertyBag::Prop* prop = GetPropertyInternal(bag);
if (!prop)
return NULL;
- return static_cast< Container* >(prop)->get();
+ return static_cast<Container*>(prop)->get();
}
// See also DeleteProperty on thn PropertyAccessorBase.