Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(406)

Side by Side Diff: Source/core/workers/DedicatedWorkerGlobalScope.h

Issue 191003010: Oilpan: move WorkerThreadStartupData to the oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | Source/core/workers/DedicatedWorkerGlobalScope.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 21 matching lines...) Expand all
32 #define DedicatedWorkerGlobalScope_h 32 #define DedicatedWorkerGlobalScope_h
33 33
34 #include "core/dom/MessagePort.h" 34 #include "core/dom/MessagePort.h"
35 #include "core/frame/csp/ContentSecurityPolicy.h" 35 #include "core/frame/csp/ContentSecurityPolicy.h"
36 #include "core/workers/WorkerGlobalScope.h" 36 #include "core/workers/WorkerGlobalScope.h"
37 #include "heap/Handle.h" 37 #include "heap/Handle.h"
38 38
39 namespace WebCore { 39 namespace WebCore {
40 40
41 class DedicatedWorkerThread; 41 class DedicatedWorkerThread;
42 struct WorkerThreadStartupData; 42 class WorkerThreadStartupData;
43 43
44 class DedicatedWorkerGlobalScope FINAL : public WorkerGlobalScope { 44 class DedicatedWorkerGlobalScope FINAL : public WorkerGlobalScope {
45 public: 45 public:
46 typedef WorkerGlobalScope Base; 46 typedef WorkerGlobalScope Base;
47 static PassRefPtrWillBeRawPtr<DedicatedWorkerGlobalScope> create(DedicatedWo rkerThread*, PassOwnPtr<WorkerThreadStartupData>, double timeOrigin); 47 static PassRefPtrWillBeRawPtr<DedicatedWorkerGlobalScope> create(DedicatedWo rkerThread*, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>, double timeOrigin) ;
48 virtual ~DedicatedWorkerGlobalScope(); 48 virtual ~DedicatedWorkerGlobalScope();
49 49
50 virtual bool isDedicatedWorkerGlobalScope() const OVERRIDE { return true; } 50 virtual bool isDedicatedWorkerGlobalScope() const OVERRIDE { return true; }
51 51
52 // Overridden to allow us to check our pending activity after executing impo rted script. 52 // Overridden to allow us to check our pending activity after executing impo rted script.
53 virtual void importScripts(const Vector<String>& urls, ExceptionState&) OVER RIDE; 53 virtual void importScripts(const Vector<String>& urls, ExceptionState&) OVER RIDE;
54 54
55 // EventTarget 55 // EventTarget
56 virtual const AtomicString& interfaceName() const OVERRIDE; 56 virtual const AtomicString& interfaceName() const OVERRIDE;
57 57
58 void postMessage(PassRefPtr<SerializedScriptValue>, const MessagePortArray*, ExceptionState&); 58 void postMessage(PassRefPtr<SerializedScriptValue>, const MessagePortArray*, ExceptionState&);
59 59
60 DEFINE_ATTRIBUTE_EVENT_LISTENER(message); 60 DEFINE_ATTRIBUTE_EVENT_LISTENER(message);
61 61
62 DedicatedWorkerThread* thread(); 62 DedicatedWorkerThread* thread();
63 63
64 virtual void trace(Visitor*) OVERRIDE; 64 virtual void trace(Visitor*) OVERRIDE;
65 65
66 private: 66 private:
67 DedicatedWorkerGlobalScope(const KURL&, const String& userAgent, DedicatedWo rkerThread*, double timeOrigin, PassOwnPtr<WorkerClients>); 67 DedicatedWorkerGlobalScope(const KURL&, const String& userAgent, DedicatedWo rkerThread*, double timeOrigin, PassOwnPtr<WorkerClients>);
68 }; 68 };
69 69
70 } // namespace WebCore 70 } // namespace WebCore
71 71
72 #endif // DedicatedWorkerGlobalScope_h 72 #endif // DedicatedWorkerGlobalScope_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/workers/DedicatedWorkerGlobalScope.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698