summaryrefslogtreecommitdiffstats
path: root/base/values.h
diff options
context:
space:
mode:
authordeanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-04 13:56:25 +0000
committerdeanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-04 13:56:25 +0000
commitaf5ed4a1121c8bf248f4a5f116566a045f34547b (patch)
tree01791cfe32f84fceff7ca18793f6e831e21edbc0 /base/values.h
parentfe346901291814daa20a6892a632f6e6fb7219ef (diff)
downloadchromium_src-af5ed4a1121c8bf248f4a5f116566a045f34547b.zip
chromium_src-af5ed4a1121c8bf248f4a5f116566a045f34547b.tar.gz
chromium_src-af5ed4a1121c8bf248f4a5f116566a045f34547b.tar.bz2
Remove incorrect scoping on method declarations.
TBR=evanm git-svn-id: svn://svn.chromium.org/chrome/trunk/src@314 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/values.h')
-rw-r--r--base/values.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/values.h b/base/values.h
index 4f135d0..3a531a6 100644
--- a/base/values.h
+++ b/base/values.h
@@ -190,7 +190,7 @@ public:
// Returns NULL if buffer is NULL.
static BinaryValue* CreateWithCopiedBuffer(char* buffer, size_t size);
- BinaryValue::~BinaryValue();
+ ~BinaryValue();
// Subclassed methods
Value* DeepCopy() const;
@@ -204,7 +204,7 @@ private:
// Constructor is private so that only objects with valid buffer pointers
// and size values can be created.
- BinaryValue::BinaryValue(char* buffer, size_t size);
+ BinaryValue(char* buffer, size_t size);
char* buffer_;
size_t size_;
@@ -220,10 +220,10 @@ class DictionaryValue : public Value {
virtual bool Equals(const Value* other) const;
// Returns true if the current dictionary has a value for the given key.
- bool DictionaryValue::HasKey(const std::wstring& key);
+ bool HasKey(const std::wstring& key);
// Clears any current contents of this dictionary.
- void DictionaryValue::Clear();
+ void Clear();
// Sets the Value associated with the given path starting from this object.
// A path has the form "<key>" or "<key>.<key>.[...]", where "." indexes