Index: src/debug.cc |
=================================================================== |
--- src/debug.cc (revision 10367) |
+++ src/debug.cc (working copy) |
@@ -682,7 +682,7 @@ |
} |
-void Debug::Setup(bool create_heap_objects) { |
+void Debug::SetUp(bool create_heap_objects) { |
ThreadInit(); |
if (create_heap_objects) { |
// Get code to handle debug break on return. |
@@ -1213,7 +1213,7 @@ |
void Debug::FloodWithOneShot(Handle<SharedFunctionInfo> shared) { |
PrepareForBreakPoints(); |
- // Make sure the function has setup the debug info. |
+ // Make sure the function has set up the debug info. |
if (!EnsureDebugInfo(shared)) { |
// Return if we failed to retrieve the debug info. |
return; |
@@ -3065,7 +3065,7 @@ |
v8::Debug::DebugBreak(); |
} |
- if (Socket::Setup()) { |
+ if (Socket::SetUp()) { |
if (agent_ == NULL) { |
agent_ = new DebuggerAgent(name, port); |
agent_->Start(); |