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

Side by Side Diff: src/debug.cc

Issue 3052026: Fix failing tests and rollback two from Testing change for failing unit test (Closed)
Patch Set: merge Created 10 years, 4 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
« no previous file with comments | « no previous file | src/serialize.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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 1769 matching lines...) Expand 10 before | Expand all | Expand 10 after
1780 return false; 1780 return false;
1781 } 1781 }
1782 1782
1783 1783
1784 void Debug::FramesHaveBeenDropped(StackFrame::Id new_break_frame_id, 1784 void Debug::FramesHaveBeenDropped(StackFrame::Id new_break_frame_id,
1785 FrameDropMode mode, 1785 FrameDropMode mode,
1786 Object** restarter_frame_function_pointer) { 1786 Object** restarter_frame_function_pointer) {
1787 thread_local_.frame_drop_mode_ = mode; 1787 thread_local_.frame_drop_mode_ = mode;
1788 thread_local_.break_frame_id_ = new_break_frame_id; 1788 thread_local_.break_frame_id_ = new_break_frame_id;
1789 thread_local_.restarter_frame_function_pointer_ = 1789 thread_local_.restarter_frame_function_pointer_ =
1790 // Temporary disabled for failing test investigation. 1790 restarter_frame_function_pointer;
1791 // restarter_frame_function_pointer;
1792 NULL;
1793 } 1791 }
1794 1792
1795 1793
1796 bool Debug::IsDebugGlobal(GlobalObject* global) { 1794 bool Debug::IsDebugGlobal(GlobalObject* global) {
1797 return IsLoaded() && global == Debug::debug_context()->global(); 1795 return IsLoaded() && global == Debug::debug_context()->global();
1798 } 1796 }
1799 1797
1800 1798
1801 void Debug::ClearMirrorCache() { 1799 void Debug::ClearMirrorCache() {
1802 HandleScope scope; 1800 HandleScope scope;
(...skipping 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after
3016 { 3014 {
3017 Locker locker; 3015 Locker locker;
3018 Debugger::CallMessageDispatchHandler(); 3016 Debugger::CallMessageDispatchHandler();
3019 } 3017 }
3020 } 3018 }
3021 } 3019 }
3022 3020
3023 #endif // ENABLE_DEBUGGER_SUPPORT 3021 #endif // ENABLE_DEBUGGER_SUPPORT
3024 3022
3025 } } // namespace v8::internal 3023 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/serialize.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698