| Index: third_party/WebKit/Source/bindings/core/v8/DictionaryIterator.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/DictionaryIterator.h b/third_party/WebKit/Source/bindings/core/v8/DictionaryIterator.h
|
| index fb7c6637ddb3a2ef0bc892430e83094a8f8630fc..2b093b8873163fd2a2b71acd734e9b9895f22718 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/DictionaryIterator.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/DictionaryIterator.h
|
| @@ -9,6 +9,12 @@
|
| #include "wtf/Allocator.h"
|
| #include <v8.h>
|
|
|
| +namespace WTF {
|
| +
|
| +class String;
|
| +
|
| +} // namespace WTF
|
| +
|
| namespace blink {
|
|
|
| class Dictionary;
|
| @@ -32,6 +38,7 @@ public:
|
|
|
| v8::MaybeLocal<v8::Value> value() { return m_value; }
|
| bool valueAsDictionary(Dictionary& result, ExceptionState&);
|
| + bool valueAsString(WTF::String& result);
|
|
|
| private:
|
| v8::Isolate* m_isolate;
|
|
|