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

Side by Side Diff: Source/modules/serviceworkers/ServiceWorkerRegistration.h

Issue 458053004: Oilpan: fix build after r179903. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/modules/serviceworkers/ServiceWorkerRegistration.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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ServiceWorkerRegistration_h 5 #ifndef ServiceWorkerRegistration_h
6 #define ServiceWorkerRegistration_h 6 #define ServiceWorkerRegistration_h
7 7
8 #include "core/dom/ActiveDOMObject.h" 8 #include "core/dom/ActiveDOMObject.h"
9 #include "core/events/EventTarget.h" 9 #include "core/events/EventTarget.h"
10 #include "modules/serviceworkers/ServiceWorker.h" 10 #include "modules/serviceworkers/ServiceWorker.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 PassRefPtrWillBeRawPtr<ServiceWorker> installing() { return m_installing.get (); } 50 PassRefPtrWillBeRawPtr<ServiceWorker> installing() { return m_installing.get (); }
51 PassRefPtrWillBeRawPtr<ServiceWorker> waiting() { return m_waiting.get(); } 51 PassRefPtrWillBeRawPtr<ServiceWorker> waiting() { return m_waiting.get(); }
52 PassRefPtrWillBeRawPtr<ServiceWorker> active() { return m_active.get(); } 52 PassRefPtrWillBeRawPtr<ServiceWorker> active() { return m_active.get(); }
53 53
54 String scope() const; 54 String scope() const;
55 55
56 ScriptPromise unregister(ScriptState*); 56 ScriptPromise unregister(ScriptState*);
57 57
58 DEFINE_ATTRIBUTE_EVENT_LISTENER(updatefound); 58 DEFINE_ATTRIBUTE_EVENT_LISTENER(updatefound);
59 59
60 virtual void trace(Visitor*) OVERRIDE;
61
60 private: 62 private:
61 static PassRefPtrWillBeRawPtr<ServiceWorkerRegistration> create(ExecutionCon text*, PassOwnPtr<WebServiceWorkerRegistration>); 63 static PassRefPtrWillBeRawPtr<ServiceWorkerRegistration> create(ExecutionCon text*, PassOwnPtr<WebServiceWorkerRegistration>);
62 ServiceWorkerRegistration(ExecutionContext*, PassOwnPtr<WebServiceWorkerRegi stration>); 64 ServiceWorkerRegistration(ExecutionContext*, PassOwnPtr<WebServiceWorkerRegi stration>);
63 65
64 OwnPtr<WebServiceWorkerRegistration> m_outerRegistration; 66 OwnPtr<WebServiceWorkerRegistration> m_outerRegistration;
65 WebServiceWorkerProvider* m_provider; 67 WebServiceWorkerProvider* m_provider;
66 RefPtrWillBeMember<ServiceWorker> m_installing; 68 RefPtrWillBeMember<ServiceWorker> m_installing;
67 RefPtrWillBeMember<ServiceWorker> m_waiting; 69 RefPtrWillBeMember<ServiceWorker> m_waiting;
68 RefPtrWillBeMember<ServiceWorker> m_active; 70 RefPtrWillBeMember<ServiceWorker> m_active;
69 }; 71 };
70 72
71 } // namespace blink 73 } // namespace blink
72 74
73 #endif // ServiceWorkerRegistration_h 75 #endif // ServiceWorkerRegistration_h
OLDNEW
« no previous file with comments | « no previous file | Source/modules/serviceworkers/ServiceWorkerRegistration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698