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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 for (const auto& task : tasks) | 257 for (const auto& task : tasks) |
258 task->run(); | 258 task->run(); |
259 ASSERT(m_endOfScopeTasks.isEmpty()); | 259 ASSERT(m_endOfScopeTasks.isEmpty()); |
260 } | 260 } |
261 | 261 |
262 void V8PerIsolateData::clearEndOfScopeTasks() | 262 void V8PerIsolateData::clearEndOfScopeTasks() |
263 { | 263 { |
264 m_endOfScopeTasks.clear(); | 264 m_endOfScopeTasks.clear(); |
265 } | 265 } |
266 | 266 |
267 void V8PerIsolateData::setScriptDebugServer(PassOwnPtr<ScriptDebugServer> server
) | 267 void V8PerIsolateData::setScriptDebugServer(PassOwnPtrWillBeRawPtr<ScriptDebugSe
rver> server) |
268 { | 268 { |
269 ASSERT(!m_debugServer); | 269 ASSERT(!m_debugServer); |
270 m_debugServer = server; | 270 m_debugServer = server; |
271 } | 271 } |
272 | 272 |
273 } // namespace blink | 273 } // namespace blink |
OLD | NEW |