| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
| 3 * Copyright (C) 2009, 2011 Google Inc. All Rights Reserved. | 3 * Copyright (C) 2009, 2011 Google Inc. All Rights Reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 } | 347 } |
| 348 | 348 |
| 349 void WorkerGlobalScope::trace(Visitor* visitor) | 349 void WorkerGlobalScope::trace(Visitor* visitor) |
| 350 { | 350 { |
| 351 visitor->trace(m_console); | 351 visitor->trace(m_console); |
| 352 visitor->trace(m_location); | 352 visitor->trace(m_location); |
| 353 visitor->trace(m_navigator); | 353 visitor->trace(m_navigator); |
| 354 visitor->trace(m_workerInspectorController); | 354 visitor->trace(m_workerInspectorController); |
| 355 visitor->trace(m_eventQueue); | 355 visitor->trace(m_eventQueue); |
| 356 visitor->trace(m_workerClients); | 356 visitor->trace(m_workerClients); |
| 357 visitor->trace(m_messageStorage); |
| 357 WillBeHeapSupplementable<WorkerGlobalScope>::trace(visitor); | 358 WillBeHeapSupplementable<WorkerGlobalScope>::trace(visitor); |
| 358 ExecutionContext::trace(visitor); | 359 ExecutionContext::trace(visitor); |
| 359 EventTargetWithInlineData::trace(visitor); | 360 EventTargetWithInlineData::trace(visitor); |
| 360 } | 361 } |
| 361 | 362 |
| 362 } // namespace blink | 363 } // namespace blink |
| OLD | NEW |