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

Unified Diff: src/serialize.cc

Issue 897213003: Remove obsolete Malloced::FatalProcessOutOfMemory. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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 | « src/allocation.cc ('k') | src/zone.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/serialize.cc
diff --git a/src/serialize.cc b/src/serialize.cc
index f2c7cab3ce81a743d9626bcc1c52cdb3bed74d28..887276f9cf0dc1b65e6f90432e14cea0b205e9e3 100644
--- a/src/serialize.cc
+++ b/src/serialize.cc
@@ -657,7 +657,7 @@ void Deserializer::Initialize(Isolate* isolate) {
void Deserializer::Deserialize(Isolate* isolate) {
Initialize(isolate);
- if (!ReserveSpace()) FatalProcessOutOfMemory("deserializing context");
+ if (!ReserveSpace()) V8::FatalProcessOutOfMemory("deserializing context");
// No active threads.
DCHECK_NULL(isolate_->thread_manager()->FirstThreadStateInUse());
// No active handles.
@@ -702,7 +702,7 @@ MaybeHandle<Object> Deserializer::DeserializePartial(
Handle<FixedArray>* outdated_contexts_out) {
Initialize(isolate);
if (!ReserveSpace()) {
- FatalProcessOutOfMemory("deserialize context");
+ V8::FatalProcessOutOfMemory("deserialize context");
return MaybeHandle<Object>();
}
« no previous file with comments | « src/allocation.cc ('k') | src/zone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698