| Index: third_party/WebKit/Source/platform/inspector_protocol/Values.cpp
|
| diff --git a/third_party/WebKit/Source/platform/inspector_protocol/Values.cpp b/third_party/WebKit/Source/platform/inspector_protocol/Values.cpp
|
| index 03569db06f583f661cadce4ad4be3765b282bb6a..9049bfeb3118ccb708c2dfdd8ac4eafff9024ff9 100644
|
| --- a/third_party/WebKit/Source/platform/inspector_protocol/Values.cpp
|
| +++ b/third_party/WebKit/Source/platform/inspector_protocol/Values.cpp
|
| @@ -259,6 +259,13 @@ bool DictionaryValue::booleanProperty(const String16& name, bool defaultValue) c
|
| return result;
|
| }
|
|
|
| +double DictionaryValue::numberProperty(const String16& name, double defaultValue) const
|
| +{
|
| + double result = defaultValue;
|
| + getNumber(name, &result);
|
| + return result;
|
| +}
|
| +
|
| void DictionaryValue::remove(const String16& name)
|
| {
|
| m_data.remove(name);
|
|
|