diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-09-15 09:41:08 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-09-15 09:42:06 -0700 |
commit | 1b15af9dd2bf4adb7a2e73ae17a12e2e98a88f72 (patch) | |
tree | feede6d06b8c99b92e29a9fdcf0e9ade05b981d0 /deps/v8/src/d8-debug.h | |
parent | f8b90946aec53b453d82dd66a4d812ec86487629 (diff) | |
download | node-new-1b15af9dd2bf4adb7a2e73ae17a12e2e98a88f72.tar.gz |
Upgrade V8 to 3.6.4
Diffstat (limited to 'deps/v8/src/d8-debug.h')
-rw-r--r-- | deps/v8/src/d8-debug.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/deps/v8/src/d8-debug.h b/deps/v8/src/d8-debug.h index 4e33e6f4c4..aeff3c121c 100644 --- a/deps/v8/src/d8-debug.h +++ b/deps/v8/src/d8-debug.h @@ -61,8 +61,8 @@ class RemoteDebugger { void Run(); // Handle events from the subordinate threads. - void MessageReceived(i::SmartPointer<char> message); - void KeyboardCommand(i::SmartPointer<char> command); + void MessageReceived(i::SmartArrayPointer<char> message); + void KeyboardCommand(i::SmartArrayPointer<char> command); void ConnectionClosed(); private: @@ -127,7 +127,7 @@ class KeyboardThread: public i::Thread { // Events processed by the main deubgger thread. class RemoteDebuggerEvent { public: - RemoteDebuggerEvent(int type, i::SmartPointer<char> data) + RemoteDebuggerEvent(int type, i::SmartArrayPointer<char> data) : type_(type), data_(data), next_(NULL) { ASSERT(type == kMessage || type == kKeyboard || type == kDisconnect); } @@ -144,7 +144,7 @@ class RemoteDebuggerEvent { RemoteDebuggerEvent* next() { return next_; } int type_; - i::SmartPointer<char> data_; + i::SmartArrayPointer<char> data_; RemoteDebuggerEvent* next_; friend class RemoteDebugger; |