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

Side by Side Diff: src/api.cc

Issue 9123031: Spellling mistakes. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/arm/code-stubs-arm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 5535 matching lines...) Expand 10 before | Expand all | Expand 10 after
5546 wait_for_connection); 5546 wait_for_connection);
5547 } 5547 }
5548 5548
5549 5549
5550 void Debug::DisableAgent() { 5550 void Debug::DisableAgent() {
5551 return i::Isolate::Current()->debugger()->StopAgent(); 5551 return i::Isolate::Current()->debugger()->StopAgent();
5552 } 5552 }
5553 5553
5554 5554
5555 void Debug::ProcessDebugMessages() { 5555 void Debug::ProcessDebugMessages() {
5556 i::Execution::ProcessDebugMesssages(true); 5556 i::Execution::ProcessDebugMessages(true);
5557 } 5557 }
5558 5558
5559 Local<Context> Debug::GetDebugContext() { 5559 Local<Context> Debug::GetDebugContext() {
5560 i::Isolate* isolate = i::Isolate::Current(); 5560 i::Isolate* isolate = i::Isolate::Current();
5561 EnsureInitializedForIsolate(isolate, "v8::Debug::GetDebugContext()"); 5561 EnsureInitializedForIsolate(isolate, "v8::Debug::GetDebugContext()");
5562 ENTER_V8(isolate); 5562 ENTER_V8(isolate);
5563 return Utils::ToLocal(i::Isolate::Current()->debugger()->GetDebugContext()); 5563 return Utils::ToLocal(i::Isolate::Current()->debugger()->GetDebugContext());
5564 } 5564 }
5565 5565
5566 #endif // ENABLE_DEBUGGER_SUPPORT 5566 #endif // ENABLE_DEBUGGER_SUPPORT
(...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after
6158 6158
6159 6159
6160 char* HandleScopeImplementer::Iterate(ObjectVisitor* v, char* storage) { 6160 char* HandleScopeImplementer::Iterate(ObjectVisitor* v, char* storage) {
6161 HandleScopeImplementer* scope_implementer = 6161 HandleScopeImplementer* scope_implementer =
6162 reinterpret_cast<HandleScopeImplementer*>(storage); 6162 reinterpret_cast<HandleScopeImplementer*>(storage);
6163 scope_implementer->IterateThis(v); 6163 scope_implementer->IterateThis(v);
6164 return storage + ArchiveSpacePerThread(); 6164 return storage + ArchiveSpacePerThread();
6165 } 6165 }
6166 6166
6167 } } // namespace v8::internal 6167 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/arm/code-stubs-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698