Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Unified Diff: third_party/WebKit/Source/bindings/core/v8/DictionaryIterator.h

Issue 2334123002: Web Animations: Support iterator protocol in property indexed keyframe values (Closed)
Patch Set: Add missing null check Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698