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

Unified Diff: Source/bindings/dart/DartHandleProxy.h

Issue 18169002: Improve Dart Debugger performance and robustness by creating Dart wrappers using the standard SetNa… (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: code review fixes 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/dart/DartHandleProxy.h
diff --git a/Source/bindings/dart/DartHandleProxy.h b/Source/bindings/dart/DartHandleProxy.h
index 2fe4f6111e07730f11cd91fd1720c99d1abaa0e8..413d498054223767fb3f9eef9d832e61d316aa0d 100644
--- a/Source/bindings/dart/DartHandleProxy.h
+++ b/Source/bindings/dart/DartHandleProxy.h
@@ -37,11 +37,17 @@
namespace WebCore {
+class Node;
+
class DartHandleProxy {
public:
static v8::Handle<v8::Value> create(Dart_Handle value);
- static v8::Handle<v8::Value> createForLibrary(intptr_t libraryId);
- static void getMirrorAPI(v8::Handle<v8::Object> container);
+ static v8::Handle<v8::Value> createLibraryProxy(Dart_Handle value, int32_t libraryId, Dart_Handle prefix);
+ static v8::Handle<v8::Value> createLocalScopeProxy(Dart_Handle localVariables);
+
+ static bool isDartProxy(v8::Handle<v8::Value>);
+ static const char* getType(v8::Handle<v8::Value>);
+ static Node* toNativeNode(v8::Handle<v8::Value>);
};
}

Powered by Google App Engine
This is Rietveld 408576698