| Index: third_party/WebKit/Source/modules/storage/Storage.cpp
|
| diff --git a/third_party/WebKit/Source/modules/storage/Storage.cpp b/third_party/WebKit/Source/modules/storage/Storage.cpp
|
| index 323111b9dbabfcbce520148d73b96929beafb575..372f916d90bf88df0838c07375930a8f054d85f5 100644
|
| --- a/third_party/WebKit/Source/modules/storage/Storage.cpp
|
| +++ b/third_party/WebKit/Source/modules/storage/Storage.cpp
|
| @@ -44,11 +44,6 @@ Storage::Storage(LocalFrame* frame, StorageArea* storageArea)
|
| ASSERT(m_storageArea);
|
| }
|
|
|
| -String Storage::anonymousIndexedGetter(unsigned index, ExceptionState& exceptionState)
|
| -{
|
| - return anonymousNamedGetter(AtomicString::number(index), exceptionState);
|
| -}
|
| -
|
| String Storage::anonymousNamedGetter(const AtomicString& name, ExceptionState& exceptionState)
|
| {
|
| bool found = contains(name, exceptionState);
|
| @@ -66,11 +61,6 @@ bool Storage::anonymousNamedSetter(const AtomicString& name, const AtomicString&
|
| return true;
|
| }
|
|
|
| -bool Storage::anonymousIndexedSetter(unsigned index, const AtomicString& value, ExceptionState& exceptionState)
|
| -{
|
| - return anonymousNamedSetter(AtomicString::number(index), value, exceptionState);
|
| -}
|
| -
|
| DeleteResult Storage::anonymousNamedDeleter(const AtomicString& name, ExceptionState& exceptionState)
|
| {
|
| bool found = contains(name, exceptionState);
|
| @@ -84,12 +74,6 @@ DeleteResult Storage::anonymousNamedDeleter(const AtomicString& name, ExceptionS
|
| return DeleteSuccess;
|
| }
|
|
|
| -DeleteResult Storage::anonymousIndexedDeleter(unsigned index, ExceptionState& exceptionState)
|
| -{
|
| - DeleteResult result = anonymousNamedDeleter(AtomicString::number(index), exceptionState);
|
| - return result == DeleteUnknownProperty ? DeleteSuccess : result;
|
| -}
|
| -
|
| void Storage::namedPropertyEnumerator(Vector<String>& names, ExceptionState& exceptionState)
|
| {
|
| unsigned length = this->length(exceptionState);
|
|
|