| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 | 193 |
| 194 void V8Initializer::initializeMainThreadIfNeeded() | 194 void V8Initializer::initializeMainThreadIfNeeded() |
| 195 { | 195 { |
| 196 ASSERT(isMainThread()); | 196 ASSERT(isMainThread()); |
| 197 | 197 |
| 198 static bool initialized = false; | 198 static bool initialized = false; |
| 199 if (initialized) | 199 if (initialized) |
| 200 return; | 200 return; |
| 201 initialized = true; | 201 initialized = true; |
| 202 | 202 |
| 203 static const char v8Flags[] = "--harmony-classes"; | 203 static const char v8Flags[] = "--harmony-classes --harmony-arrays --harmony-
array-includes --harmony-regexps"; |
| 204 v8::V8::SetFlagsFromString(v8Flags, sizeof(v8Flags) - 1); | 204 v8::V8::SetFlagsFromString(v8Flags, sizeof(v8Flags) - 1); |
| 205 | 205 |
| 206 gin::IsolateHolder::Initialize(gin::IsolateHolder::kStrictMode, v8ArrayBuffe
rAllocator()); | 206 gin::IsolateHolder::Initialize(gin::IsolateHolder::kStrictMode, v8ArrayBuffe
rAllocator()); |
| 207 | 207 |
| 208 v8::Isolate* isolate = V8PerIsolateData::initialize(); | 208 v8::Isolate* isolate = V8PerIsolateData::initialize(); |
| 209 | 209 |
| 210 v8::V8::AddGCPrologueCallback(V8GCController::gcPrologue); | 210 v8::V8::AddGCPrologueCallback(V8GCController::gcPrologue); |
| 211 v8::V8::AddGCEpilogueCallback(V8GCController::gcEpilogue); | 211 v8::V8::AddGCEpilogueCallback(V8GCController::gcEpilogue); |
| 212 | 212 |
| 213 v8::Debug::SetLiveEditEnabled(isolate, false); | 213 v8::Debug::SetLiveEditEnabled(isolate, false); |
| 214 | 214 |
| 215 isolate->SetAutorunMicrotasks(false); | 215 isolate->SetAutorunMicrotasks(false); |
| 216 | 216 |
| 217 v8::V8::SetFatalErrorHandler(reportFatalErrorInMainThread); | 217 v8::V8::SetFatalErrorHandler(reportFatalErrorInMainThread); |
| 218 v8::V8::AddMessageListener(messageHandlerInMainThread); | 218 v8::V8::AddMessageListener(messageHandlerInMainThread); |
| 219 v8::V8::SetFailedAccessCheckCallbackFunction(failedAccessCheckCallbackInMain
Thread); | 219 v8::V8::SetFailedAccessCheckCallbackFunction(failedAccessCheckCallbackInMain
Thread); |
| 220 | 220 |
| 221 isolate->SetEventLogger(timerTraceProfilerInMainThread); | 221 isolate->SetEventLogger(timerTraceProfilerInMainThread); |
| 222 | 222 |
| 223 ScriptProfiler::initialize(); | 223 ScriptProfiler::initialize(); |
| 224 } | 224 } |
| 225 | 225 |
| 226 } // namespace blink | 226 } // namespace blink |
| OLD | NEW |