OLD | NEW |
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 ApplicationCacheErrorEvent_h | 5 #ifndef ApplicationCacheErrorEvent_h |
6 #define ApplicationCacheErrorEvent_h | 6 #define ApplicationCacheErrorEvent_h |
7 | 7 |
8 #include "core/events/Event.h" | 8 #include "core/events/Event.h" |
9 #include "core/events/ThreadLocalEventNames.h" | 9 #include "core/events/ThreadLocalEventNames.h" |
10 #include "core/loader/appcache/ApplicationCacheHost.h" | 10 #include "core/loader/appcache/ApplicationCacheHost.h" |
11 #include "public/platform/WebApplicationCacheHostClient.h" | 11 #include "public/platform/WebApplicationCacheHostClient.h" |
12 | 12 |
13 namespace WebCore { | 13 namespace WebCore { |
14 | 14 |
15 class ApplicationCacheErrorEvent; | 15 class ApplicationCacheErrorEvent; |
16 | 16 |
17 struct ApplicationCacheErrorEventInit : public EventInit { | 17 struct ApplicationCacheErrorEventInit : public EventInit { |
18 ApplicationCacheErrorEventInit(); | 18 ApplicationCacheErrorEventInit(); |
19 | 19 |
20 String reason; | 20 String reason; |
21 String url; | 21 String url; |
22 int status; | 22 int status; |
23 String message; | 23 String message; |
24 }; | 24 }; |
25 | 25 |
26 class ApplicationCacheErrorEvent FINAL : public Event { | 26 class ApplicationCacheErrorEvent FINAL : public Event { |
27 public: | 27 public: |
28 virtual ~ApplicationCacheErrorEvent(); | 28 virtual ~ApplicationCacheErrorEvent(); |
29 | 29 |
30 static PassRefPtr<ApplicationCacheErrorEvent> create() | 30 static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create() |
31 { | 31 { |
32 return adoptRef(new ApplicationCacheErrorEvent); | 32 return adoptRefWillBeRefCountedGarbageCollected(new ApplicationCacheErro
rEvent); |
33 } | 33 } |
34 | 34 |
35 static PassRefPtr<ApplicationCacheErrorEvent> create(blink::WebApplicationCa
cheHost::ErrorReason reason, const String& url, int status, const String& messag
e) | 35 static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create(blink::WebA
pplicationCacheHost::ErrorReason reason, const String& url, int status, const St
ring& message) |
36 { | 36 { |
37 return adoptRef(new ApplicationCacheErrorEvent(reason, url, status, mess
age)); | 37 return adoptRefWillBeRefCountedGarbageCollected(new ApplicationCacheErro
rEvent(reason, url, status, message)); |
38 } | 38 } |
39 | 39 |
40 static PassRefPtr<ApplicationCacheErrorEvent> create(const AtomicString& eve
ntType, const ApplicationCacheErrorEventInit& initializer) | 40 static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create(const Atomi
cString& eventType, const ApplicationCacheErrorEventInit& initializer) |
41 { | 41 { |
42 return adoptRef(new ApplicationCacheErrorEvent(eventType, initializer)); | 42 return adoptRefWillBeRefCountedGarbageCollected(new ApplicationCacheErro
rEvent(eventType, initializer)); |
43 } | 43 } |
44 | 44 |
45 const String& reason() const { return m_reason; } | 45 const String& reason() const { return m_reason; } |
46 const String& url() const { return m_url; } | 46 const String& url() const { return m_url; } |
47 int status() const { return m_status; } | 47 int status() const { return m_status; } |
48 const String& message() const { return m_message; } | 48 const String& message() const { return m_message; } |
49 | 49 |
50 virtual const AtomicString& interfaceName() const OVERRIDE { return EventNam
es::ApplicationCacheErrorEvent; } | 50 virtual const AtomicString& interfaceName() const OVERRIDE { return EventNam
es::ApplicationCacheErrorEvent; } |
51 | 51 |
| 52 virtual void trace(Visitor*) OVERRIDE; |
| 53 |
52 private: | 54 private: |
53 ApplicationCacheErrorEvent(); | 55 ApplicationCacheErrorEvent(); |
54 ApplicationCacheErrorEvent(blink::WebApplicationCacheHost::ErrorReason, cons
t String& url, int status, const String& message); | 56 ApplicationCacheErrorEvent(blink::WebApplicationCacheHost::ErrorReason, cons
t String& url, int status, const String& message); |
55 ApplicationCacheErrorEvent(const AtomicString& eventType, const ApplicationC
acheErrorEventInit& initializer); | 57 ApplicationCacheErrorEvent(const AtomicString& eventType, const ApplicationC
acheErrorEventInit& initializer); |
56 | 58 |
57 String m_reason; | 59 String m_reason; |
58 String m_url; | 60 String m_url; |
59 int m_status; | 61 int m_status; |
60 String m_message; | 62 String m_message; |
61 }; | 63 }; |
62 | 64 |
63 } // namespace WebCore | 65 } // namespace WebCore |
64 | 66 |
65 #endif // ApplicationCacheErrorEvent_h | 67 #endif // ApplicationCacheErrorEvent_h |
OLD | NEW |