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

Side by Side Diff: third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.h

Issue 2080623002: Revert "Remove OwnPtr from Blink." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 20 matching lines...) Expand all
31 #ifndef ServiceWorker_h 31 #ifndef ServiceWorker_h
32 #define ServiceWorker_h 32 #define ServiceWorker_h
33 33
34 #include "bindings/core/v8/ActiveScriptWrappable.h" 34 #include "bindings/core/v8/ActiveScriptWrappable.h"
35 #include "bindings/core/v8/ScriptPromise.h" 35 #include "bindings/core/v8/ScriptPromise.h"
36 #include "bindings/core/v8/SerializedScriptValue.h" 36 #include "bindings/core/v8/SerializedScriptValue.h"
37 #include "core/workers/AbstractWorker.h" 37 #include "core/workers/AbstractWorker.h"
38 #include "modules/ModulesExport.h" 38 #include "modules/ModulesExport.h"
39 #include "public/platform/modules/serviceworker/WebServiceWorker.h" 39 #include "public/platform/modules/serviceworker/WebServiceWorker.h"
40 #include "public/platform/modules/serviceworker/WebServiceWorkerProxy.h" 40 #include "public/platform/modules/serviceworker/WebServiceWorkerProxy.h"
41 #include "wtf/OwnPtr.h"
42 #include "wtf/PassOwnPtr.h"
41 #include "wtf/PassRefPtr.h" 43 #include "wtf/PassRefPtr.h"
42 #include <memory>
43 44
44 namespace blink { 45 namespace blink {
45 46
46 class ScriptPromiseResolver; 47 class ScriptPromiseResolver;
47 48
48 class MODULES_EXPORT ServiceWorker final : public AbstractWorker, public ActiveS criptWrappable, public WebServiceWorkerProxy { 49 class MODULES_EXPORT ServiceWorker final : public AbstractWorker, public ActiveS criptWrappable, public WebServiceWorkerProxy {
49 DEFINE_WRAPPERTYPEINFO(); 50 DEFINE_WRAPPERTYPEINFO();
50 USING_GARBAGE_COLLECTED_MIXIN(ServiceWorker); 51 USING_GARBAGE_COLLECTED_MIXIN(ServiceWorker);
51 public: 52 public:
52 static ServiceWorker* from(ExecutionContext*, std::unique_ptr<WebServiceWork er::Handle>); 53 static ServiceWorker* from(ExecutionContext*, PassOwnPtr<WebServiceWorker::H andle>);
53 54
54 ~ServiceWorker() override; 55 ~ServiceWorker() override;
55 DECLARE_VIRTUAL_TRACE(); 56 DECLARE_VIRTUAL_TRACE();
56 57
57 // Eager finalization needed to promptly release owned WebServiceWorker. 58 // Eager finalization needed to promptly release owned WebServiceWorker.
58 EAGERLY_FINALIZE(); 59 EAGERLY_FINALIZE();
59 60
60 void postMessage(ExecutionContext*, PassRefPtr<SerializedScriptValue> messag e, const MessagePortArray&, ExceptionState&); 61 void postMessage(ExecutionContext*, PassRefPtr<SerializedScriptValue> messag e, const MessagePortArray&, ExceptionState&);
61 62
62 String scriptURL() const; 63 String scriptURL() const;
63 String state() const; 64 String state() const;
64 DEFINE_ATTRIBUTE_EVENT_LISTENER(statechange); 65 DEFINE_ATTRIBUTE_EVENT_LISTENER(statechange);
65 66
66 // WebServiceWorkerProxy overrides. 67 // WebServiceWorkerProxy overrides.
67 void dispatchStateChangeEvent() override; 68 void dispatchStateChangeEvent() override;
68 69
69 // AbstractWorker overrides. 70 // AbstractWorker overrides.
70 const AtomicString& interfaceName() const override; 71 const AtomicString& interfaceName() const override;
71 72
72 void internalsTerminate(); 73 void internalsTerminate();
73 private: 74 private:
74 static ServiceWorker* getOrCreate(ExecutionContext*, std::unique_ptr<WebServ iceWorker::Handle>); 75 static ServiceWorker* getOrCreate(ExecutionContext*, PassOwnPtr<WebServiceWo rker::Handle>);
75 ServiceWorker(ExecutionContext*, std::unique_ptr<WebServiceWorker::Handle>); 76 ServiceWorker(ExecutionContext*, PassOwnPtr<WebServiceWorker::Handle>);
76 77
77 // ActiveScriptWrappable overrides. 78 // ActiveScriptWrappable overrides.
78 bool hasPendingActivity() const final; 79 bool hasPendingActivity() const final;
79 80
80 // ActiveDOMObject overrides. 81 // ActiveDOMObject overrides.
81 void stop() override; 82 void stop() override;
82 83
83 // A handle to the service worker representation in the embedder. 84 // A handle to the service worker representation in the embedder.
84 std::unique_ptr<WebServiceWorker::Handle> m_handle; 85 OwnPtr<WebServiceWorker::Handle> m_handle;
85 bool m_wasStopped; 86 bool m_wasStopped;
86 }; 87 };
87 88
88 } // namespace blink 89 } // namespace blink
89 90
90 #endif // ServiceWorker_h 91 #endif // ServiceWorker_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698