Index: content/app/content_main_runner.cc |
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc |
index 05e45bd791c07773c4ec25089d299245cefb9ab7..d142f35879c5e849aaffa6c577c199efac27f7b6 100644 |
--- a/content/app/content_main_runner.cc |
+++ b/content/app/content_main_runner.cc |
@@ -730,14 +730,14 @@ class ContentMainRunnerImpl : public ContentMainRunner { |
CHECK(gin::IsolateHolder::LoadV8SnapshotFD(v8_natives_fd, |
v8_snapshot_fd)); |
} else { |
- CHECK(gin::IsolateHolder::LoadV8Snapshot()); |
+ CHECK(gin::IsolateHolder::LoadAndVerifyV8Snapshot()); |
} |
#endif // V8_USE_EXTERNAL_STARTUP_DATA |
#else |
CHECK(base::i18n::InitializeICU()); |
#ifdef V8_USE_EXTERNAL_STARTUP_DATA |
- CHECK(gin::IsolateHolder::LoadV8Snapshot()); |
+ CHECK(gin::IsolateHolder::LoadAndVerifyV8Snapshot()); |
#endif // V8_USE_EXTERNAL_STARTUP_DATA |
#endif // OS_ANDROID |