| Index: third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp | 
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp | 
| index 48cf54658aaae882d300b3bef7b21658f3b99e38..710c320f3dbd6ce538bb81e52cadedf3750a8693 100644 | 
| --- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp | 
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp | 
| @@ -76,16 +76,6 @@ InjectedScript::~InjectedScript() | 
| { | 
| } | 
|  | 
| -void InjectedScript::getCollectionEntries(ErrorString* errorString, const String16& objectId, OwnPtr<Array<CollectionEntry>>* result) | 
| -{ | 
| -    v8::HandleScope handles(m_isolate); | 
| -    V8FunctionCall function(m_manager->debugger(), context(), v8Value(), "getCollectionEntries"); | 
| -    function.appendArgument(objectId); | 
| -    OwnPtr<protocol::Value> resultValue = makeCall(function); | 
| -    protocol::ErrorSupport errors(errorString); | 
| -    *result = Array<CollectionEntry>::parse(resultValue.get(), &errors); | 
| -} | 
| - | 
| void InjectedScript::getProperties(ErrorString* errorString, const String16& objectId, bool ownProperties, bool accessorPropertiesOnly, bool generatePreview, OwnPtr<Array<PropertyDescriptor>>* properties, Maybe<protocol::Runtime::ExceptionDetails>* exceptionDetails) | 
| { | 
| v8::HandleScope handles(m_isolate); | 
|  |