diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-06 15:56:17 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-06 15:56:17 +0000 |
commit | ff73dc6192d43dbab1508a81ef914cf9578c420f (patch) | |
tree | 4d68a28d80df312afe9b8f73ac25b48fd1a71aee | |
parent | be05905f3121b7ef622b184c27012107bc06c56e (diff) | |
download | chromium_src-ff73dc6192d43dbab1508a81ef914cf9578c420f.zip chromium_src-ff73dc6192d43dbab1508a81ef914cf9578c420f.tar.gz chromium_src-ff73dc6192d43dbab1508a81ef914cf9578c420f.tar.bz2 |
Fixes two documentation bugs in property_bag.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/155012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19945 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/common/property_bag.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/chrome/common/property_bag.h b/chrome/common/property_bag.h index afc7bd3..602c161 100644 --- a/chrome/common/property_bag.h +++ b/chrome/common/property_bag.h @@ -18,8 +18,8 @@ class PropertyAccessorBase; // // The property bag is not read or written directly. Instead, callers go // through a PropertyAccessor. The Accessor generates the unique IDs that -// identify different properties, so uniquely identify a property. The Accessor -// is templatized to also provide typesafety to the callers. +// identify different properties. The Accessor is templatized to also provide +// typesafety to the callers. // // Example: // // Note: you don't want to use Singleton for your Accessor if you're using @@ -123,8 +123,6 @@ class PropertyAccessorBase { // Provides typesafe accessor functions for a property bag, and manages the // unique identifiers for properties via the PropertyAccessorBase. -// -// Note that class T must be derived from PropertyBag::Prop. template<class T> class PropertyAccessor : public PropertyAccessorBase { public: |