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 20 matching lines...) Expand all Loading... |
31 | 31 |
32 #include "ActiveDOMObject.h" | 32 #include "ActiveDOMObject.h" |
33 #include "ContentSecurityPolicy.h" | 33 #include "ContentSecurityPolicy.h" |
34 #include "DOMTimer.h" | 34 #include "DOMTimer.h" |
35 #include "DOMURL.h" | 35 #include "DOMURL.h" |
36 #include "DOMWindow.h" | 36 #include "DOMWindow.h" |
37 #include "ErrorEvent.h" | 37 #include "ErrorEvent.h" |
38 #include "Event.h" | 38 #include "Event.h" |
39 #include "EventException.h" | 39 #include "EventException.h" |
40 #include "InspectorConsoleInstrumentation.h" | 40 #include "InspectorConsoleInstrumentation.h" |
41 #include "KURL.h" | |
42 #include "MessagePort.h" | 41 #include "MessagePort.h" |
43 #include "NotImplemented.h" | |
44 #include "ScheduledAction.h" | 42 #include "ScheduledAction.h" |
45 #include "ScriptCallStack.h" | 43 #include "ScriptCallStack.h" |
46 #include "ScriptSourceCode.h" | 44 #include "ScriptSourceCode.h" |
47 #include "ScriptValue.h" | 45 #include "ScriptValue.h" |
48 #include "SecurityOrigin.h" | 46 #include "SecurityOrigin.h" |
49 #include "WorkerInspectorController.h" | 47 #include "WorkerInspectorController.h" |
50 #include "WorkerLocation.h" | 48 #include "WorkerLocation.h" |
51 #include "WorkerNavigator.h" | 49 #include "WorkerNavigator.h" |
52 #include "WorkerObjectProxy.h" | 50 #include "WorkerObjectProxy.h" |
53 #include "WorkerScriptLoader.h" | 51 #include "WorkerScriptLoader.h" |
54 #include "WorkerThread.h" | 52 #include "WorkerThread.h" |
55 #include "WorkerThreadableLoader.h" | 53 #include "WorkerThreadableLoader.h" |
56 #include "XMLHttpRequestException.h" | 54 #include "XMLHttpRequestException.h" |
| 55 #include "core/platform/KURL.h" |
| 56 #include "core/platform/NotImplemented.h" |
57 #include <wtf/RefPtr.h> | 57 #include <wtf/RefPtr.h> |
58 #include <wtf/UnusedParam.h> | 58 #include <wtf/UnusedParam.h> |
59 | 59 |
60 #if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS) | 60 #if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS) |
61 #include "NotificationCenter.h" | 61 #include "NotificationCenter.h" |
62 #endif | 62 #endif |
63 | 63 |
64 #include "ExceptionCode.h" | 64 #include "ExceptionCode.h" |
65 | 65 |
66 namespace WebCore { | 66 namespace WebCore { |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 iter = m_workerObservers.begin(); | 366 iter = m_workerObservers.begin(); |
367 } | 367 } |
368 } | 368 } |
369 | 369 |
370 WorkerEventQueue* WorkerContext::eventQueue() const | 370 WorkerEventQueue* WorkerContext::eventQueue() const |
371 { | 371 { |
372 return m_eventQueue.get(); | 372 return m_eventQueue.get(); |
373 } | 373 } |
374 | 374 |
375 } // namespace WebCore | 375 } // namespace WebCore |
OLD | NEW |