| Index: third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.cpp
|
| index fc13b3dc783e4f69ca983d060e51a99e53679f67..9e0818bac6fdef097f16c8cc7ef66fb78eee8774 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.cpp
|
| @@ -209,6 +209,11 @@ v8::Local<v8::Value> V8InspectorSessionImpl::findObject(ErrorString* errorString
|
| return objectValue;
|
| }
|
|
|
| +std::unique_ptr<protocol::Runtime::Exported::RemoteObject> V8InspectorSessionImpl::wrapObject(v8::Local<v8::Context> context, v8::Local<v8::Value> value, const String16& groupName)
|
| +{
|
| + return wrapObject(context, value, groupName, false);
|
| +}
|
| +
|
| std::unique_ptr<protocol::Runtime::RemoteObject> V8InspectorSessionImpl::wrapObject(v8::Local<v8::Context> context, v8::Local<v8::Value> value, const String16& groupName, bool generatePreview)
|
| {
|
| ErrorString errorString;
|
|
|