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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 22 matching lines...) Expand all Loading... |
33 | 33 |
34 #include "core/dom/MessagePort.h" | 34 #include "core/dom/MessagePort.h" |
35 #include "core/frame/ContentSecurityPolicy.h" | 35 #include "core/frame/ContentSecurityPolicy.h" |
36 #include "core/workers/WorkerGlobalScope.h" | 36 #include "core/workers/WorkerGlobalScope.h" |
37 | 37 |
38 namespace WebCore { | 38 namespace WebCore { |
39 | 39 |
40 class DedicatedWorkerThread; | 40 class DedicatedWorkerThread; |
41 struct WorkerThreadStartupData; | 41 struct WorkerThreadStartupData; |
42 | 42 |
43 class DedicatedWorkerGlobalScope : public WorkerGlobalScope { | 43 class DedicatedWorkerGlobalScope FINAL : public WorkerGlobalScope { |
44 public: | 44 public: |
45 typedef WorkerGlobalScope Base; | 45 typedef WorkerGlobalScope Base; |
46 static PassRefPtr<DedicatedWorkerGlobalScope> create(DedicatedWorkerThread*,
PassOwnPtr<WorkerThreadStartupData>, double timeOrigin); | 46 static PassRefPtr<DedicatedWorkerGlobalScope> create(DedicatedWorkerThread*,
PassOwnPtr<WorkerThreadStartupData>, double timeOrigin); |
47 virtual ~DedicatedWorkerGlobalScope(); | 47 virtual ~DedicatedWorkerGlobalScope(); |
48 | 48 |
49 virtual bool isDedicatedWorkerGlobalScope() const OVERRIDE { return true; } | 49 virtual bool isDedicatedWorkerGlobalScope() const OVERRIDE { return true; } |
50 | 50 |
51 // Overridden to allow us to check our pending activity after executing impo
rted script. | 51 // Overridden to allow us to check our pending activity after executing impo
rted script. |
52 virtual void importScripts(const Vector<String>& urls, ExceptionState&) OVER
RIDE; | 52 virtual void importScripts(const Vector<String>& urls, ExceptionState&) OVER
RIDE; |
53 | 53 |
54 // EventTarget | 54 // EventTarget |
55 virtual const AtomicString& interfaceName() const OVERRIDE; | 55 virtual const AtomicString& interfaceName() const OVERRIDE; |
56 | 56 |
57 void postMessage(PassRefPtr<SerializedScriptValue>, const MessagePortArray*,
ExceptionState&); | 57 void postMessage(PassRefPtr<SerializedScriptValue>, const MessagePortArray*,
ExceptionState&); |
58 | 58 |
59 DEFINE_ATTRIBUTE_EVENT_LISTENER(message); | 59 DEFINE_ATTRIBUTE_EVENT_LISTENER(message); |
60 | 60 |
61 DedicatedWorkerThread* thread(); | 61 DedicatedWorkerThread* thread(); |
62 | 62 |
63 private: | 63 private: |
64 DedicatedWorkerGlobalScope(const KURL&, const String& userAgent, DedicatedWo
rkerThread*, double timeOrigin, PassOwnPtr<WorkerClients>); | 64 DedicatedWorkerGlobalScope(const KURL&, const String& userAgent, DedicatedWo
rkerThread*, double timeOrigin, PassOwnPtr<WorkerClients>); |
65 }; | 65 }; |
66 | 66 |
67 } // namespace WebCore | 67 } // namespace WebCore |
68 | 68 |
69 #endif // DedicatedWorkerGlobalScope_h | 69 #endif // DedicatedWorkerGlobalScope_h |
OLD | NEW |