| 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 12 matching lines...) Expand all Loading... |
| 23 * THE POSSIBILITY OF SUCH DAMAGE. | 23 * THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "bindings/core/v8/V8PerIsolateData.h" | 27 #include "bindings/core/v8/V8PerIsolateData.h" |
| 28 | 28 |
| 29 #include "bindings/core/v8/DOMDataStore.h" | 29 #include "bindings/core/v8/DOMDataStore.h" |
| 30 #include "bindings/core/v8/PageScriptDebugServer.h" | 30 #include "bindings/core/v8/PageScriptDebugServer.h" |
| 31 #include "bindings/core/v8/ScriptGCEvent.h" | 31 #include "bindings/core/v8/ScriptGCEvent.h" |
| 32 #include "bindings/core/v8/ScriptProfiler.h" | 32 #include "bindings/core/v8/ScriptProfiler.h" |
| 33 #include "bindings/core/v8/ScriptSourceCode.h" |
| 33 #include "bindings/core/v8/V8Binding.h" | 34 #include "bindings/core/v8/V8Binding.h" |
| 34 #include "bindings/core/v8/V8HiddenValue.h" | 35 #include "bindings/core/v8/V8HiddenValue.h" |
| 35 #include "bindings/core/v8/V8ObjectConstructor.h" | 36 #include "bindings/core/v8/V8ObjectConstructor.h" |
| 36 #include "bindings/core/v8/V8RecursionScope.h" | 37 #include "bindings/core/v8/V8RecursionScope.h" |
| 37 #include "bindings/core/v8/V8ScriptRunner.h" | 38 #include "bindings/core/v8/V8ScriptRunner.h" |
| 38 #include "core/frame/UseCounter.h" | 39 #include "core/frame/UseCounter.h" |
| 39 #include "public/platform/Platform.h" | 40 #include "public/platform/Platform.h" |
| 40 #include "wtf/MainThread.h" | 41 #include "wtf/MainThread.h" |
| 41 | 42 |
| 42 namespace blink { | 43 namespace blink { |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 task->run(); | 263 task->run(); |
| 263 ASSERT(m_endOfScopeTasks.isEmpty()); | 264 ASSERT(m_endOfScopeTasks.isEmpty()); |
| 264 } | 265 } |
| 265 | 266 |
| 266 void V8PerIsolateData::clearEndOfScopeTasks() | 267 void V8PerIsolateData::clearEndOfScopeTasks() |
| 267 { | 268 { |
| 268 m_endOfScopeTasks.clear(); | 269 m_endOfScopeTasks.clear(); |
| 269 } | 270 } |
| 270 | 271 |
| 271 } // namespace blink | 272 } // namespace blink |
| OLD | NEW |