| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009 Apple 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 29 matching lines...) Expand all Loading... |
| 40 #include "wtf/Assertions.h" | 40 #include "wtf/Assertions.h" |
| 41 #include "wtf/HashMap.h" | 41 #include "wtf/HashMap.h" |
| 42 #include "wtf/OwnPtr.h" | 42 #include "wtf/OwnPtr.h" |
| 43 #include "wtf/PassRefPtr.h" | 43 #include "wtf/PassRefPtr.h" |
| 44 #include "wtf/RefCounted.h" | 44 #include "wtf/RefCounted.h" |
| 45 #include "wtf/RefPtr.h" | 45 #include "wtf/RefPtr.h" |
| 46 #include "wtf/text/AtomicStringHash.h" | 46 #include "wtf/text/AtomicStringHash.h" |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 class Blob; | |
| 51 class ConsoleMessage; | 50 class ConsoleMessage; |
| 52 class ConsoleMessageStorage; | 51 class ConsoleMessageStorage; |
| 53 class ExceptionState; | 52 class ExceptionState; |
| 54 class ScheduledAction; | |
| 55 class WorkerClients; | 53 class WorkerClients; |
| 56 class WorkerConsole; | 54 class WorkerConsole; |
| 57 class WorkerInspectorController; | 55 class WorkerInspectorController; |
| 58 class WorkerLocation; | 56 class WorkerLocation; |
| 59 class WorkerNavigator; | 57 class WorkerNavigator; |
| 60 class WorkerThread; | 58 class WorkerThread; |
| 61 | 59 |
| 62 class WorkerGlobalScope : public RefCountedWillBeGarbageCollectedFinalized<Worke
rGlobalScope>, public SecurityContext, public ExecutionContext, public WillBeHea
pSupplementable<WorkerGlobalScope>, public EventTargetWithInlineData, public DOM
WindowBase64 { | 60 class WorkerGlobalScope : public RefCountedWillBeGarbageCollectedFinalized<Worke
rGlobalScope>, public SecurityContext, public ExecutionContext, public WillBeHea
pSupplementable<WorkerGlobalScope>, public EventTargetWithInlineData, public DOM
WindowBase64 { |
| 63 DEFINE_WRAPPERTYPEINFO(); | 61 DEFINE_WRAPPERTYPEINFO(); |
| 64 REFCOUNTED_EVENT_TARGET(WorkerGlobalScope); | 62 REFCOUNTED_EVENT_TARGET(WorkerGlobalScope); |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 double m_timeOrigin; | 170 double m_timeOrigin; |
| 173 | 171 |
| 174 OwnPtrWillBeMember<ConsoleMessageStorage> m_messageStorage; | 172 OwnPtrWillBeMember<ConsoleMessageStorage> m_messageStorage; |
| 175 }; | 173 }; |
| 176 | 174 |
| 177 DEFINE_TYPE_CASTS(WorkerGlobalScope, ExecutionContext, context, context->isWorke
rGlobalScope(), context.isWorkerGlobalScope()); | 175 DEFINE_TYPE_CASTS(WorkerGlobalScope, ExecutionContext, context, context->isWorke
rGlobalScope(), context.isWorkerGlobalScope()); |
| 178 | 176 |
| 179 } // namespace blink | 177 } // namespace blink |
| 180 | 178 |
| 181 #endif // WorkerGlobalScope_h | 179 #endif // WorkerGlobalScope_h |
| OLD | NEW |