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

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
« no previous file with comments | « Source/bindings/dart/DartDebugServer.cpp ('k') | Source/bindings/dart/DartHandleProxy.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/dart/DartHandleProxy.h
diff --git a/Source/bindings/dart/DartHandleProxy.h b/Source/bindings/dart/DartHandleProxy.h
index 2fe4f6111e07730f11cd91fd1720c99d1abaa0e8..24025717b44f2e7d0da7568948b74dfa6d3827cd 100644
--- a/Source/bindings/dart/DartHandleProxy.h
+++ b/Source/bindings/dart/DartHandleProxy.h
@@ -37,11 +37,18 @@
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> createTypeProxy(Dart_Handle value, bool showStatics);
+ 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* getJavaScriptType(v8::Handle<v8::Value>);
+ static Node* toNativeNode(v8::Handle<v8::Value>);
};
}
« no previous file with comments | « Source/bindings/dart/DartDebugServer.cpp ('k') | Source/bindings/dart/DartHandleProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698