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

Unified Diff: Source/bindings/v8/Dictionary.h

Issue 19457002: Make 'any'-typed attributes of events available in isolated worlds (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Properly refactored Created 7 years, 5 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: Source/bindings/v8/Dictionary.h
diff --git a/Source/bindings/v8/Dictionary.h b/Source/bindings/v8/Dictionary.h
index b105017dbbf5a041893c48d398feee7fe353e6a8..1a7cfb71ff2175796f019707e2b57c7f8418d4dc 100644
--- a/Source/bindings/v8/Dictionary.h
+++ b/Source/bindings/v8/Dictionary.h
@@ -26,7 +26,6 @@
#ifndef Dictionary_h
#define Dictionary_h
-#include "bindings/v8/ScriptValue.h"
#include "core/dom/EventListener.h"
#include "core/dom/MessagePort.h"
#include <v8.h>
@@ -46,6 +45,8 @@ class IDBKeyRange;
class MIDIPort;
class MediaKeyError;
class Notification;
+class ScriptValue;
+class SerializedScriptValue;
class SpeechRecognitionError;
class SpeechRecognitionResult;
class SpeechRecognitionResultList;
@@ -69,6 +70,7 @@ public:
bool get(const String&, double&) const;
bool get(const String&, String&) const;
bool get(const String&, ScriptValue&) const;
+ bool get(const String&, RefPtr<SerializedScriptValue>&) const;
bool get(const String&, short&) const;
bool get(const String&, unsigned short&) const;
bool get(const String&, unsigned&) const;

Powered by Google App Engine
This is Rietveld 408576698