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

Unified Diff: runtime/vm/object.cc

Issue 2759533002: Remove legacy restart code (Closed)
Patch Set: asiva review Created 3 years, 9 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 | « runtime/vm/object.h ('k') | runtime/vm/object_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index 0214fd9b87a2217fc8b7c5746a6189a67a4df9cc..ace5989735f3e1c29198e9e97ea1476bdc42e2a6 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -15406,7 +15406,6 @@ RawUnwindError* UnwindError::New(const String& message, Heap::Space space) {
}
result.set_message(message);
result.set_is_user_initiated(false);
- result.set_is_vm_restart(false);
return result.raw();
}
@@ -15421,11 +15420,6 @@ void UnwindError::set_is_user_initiated(bool value) const {
}
-void UnwindError::set_is_vm_restart(bool value) const {
- StoreNonPointer(&raw_ptr()->is_vm_restart_, value);
-}
-
-
const char* UnwindError::ToErrorCString() const {
const String& msg_str = String::Handle(message());
return msg_str.ToCString();
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/object_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698