Index: third_party/WebKit/Source/platform/JSONValues.h |
diff --git a/third_party/WebKit/Source/platform/JSONValues.h b/third_party/WebKit/Source/platform/JSONValues.h |
index 44e42c1bbceaddcf1a6e4c3d290216063f00ff41..4a06be7eae0b8a7c7f3cf16f5cc41a6f0a50a1ab 100644 |
--- a/third_party/WebKit/Source/platform/JSONValues.h |
+++ b/third_party/WebKit/Source/platform/JSONValues.h |
@@ -210,6 +210,8 @@ protected: |
PassRefPtr<JSONArray> getArray(const String& name) const; |
PassRefPtr<JSONValue> get(const String& name) const; |
+ bool booleanProperty(const String& name, bool defaultValue) const; |
+ |
void remove(const String& name); |
void prettyWriteJSONInternal(StringBuilder* output, int depth) const override; |
@@ -251,6 +253,8 @@ public: |
using JSONObjectBase::getArray; |
using JSONObjectBase::get; |
+ using JSONObjectBase::booleanProperty; |
+ |
using JSONObjectBase::remove; |
using JSONObjectBase::begin; |