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

Side by Side Diff: third_party/WebKit/Source/modules/eventsource/EventSource.h

Issue 2848963002: Clean up bindings/core/v8 (Part 1) (Closed)
Patch Set: Fix build Created 3 years, 7 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) 2009, 2012 Ericsson AB. All rights reserved. 2 * Copyright (C) 2009, 2012 Ericsson AB. All rights reserved.
3 * Copyright (C) 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2010 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 15 matching lines...) Expand all
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32 #ifndef EventSource_h 32 #ifndef EventSource_h
33 #define EventSource_h 33 #define EventSource_h
34 34
35 #include <memory> 35 #include <memory>
36 #include "bindings/core/v8/ActiveScriptWrappable.h"
37 #include "core/dom/ContextLifecycleObserver.h" 36 #include "core/dom/ContextLifecycleObserver.h"
38 #include "core/events/EventTarget.h" 37 #include "core/events/EventTarget.h"
39 #include "core/loader/ThreadableLoader.h" 38 #include "core/loader/ThreadableLoader.h"
40 #include "core/loader/ThreadableLoaderClient.h" 39 #include "core/loader/ThreadableLoaderClient.h"
41 #include "modules/ModulesExport.h" 40 #include "modules/ModulesExport.h"
42 #include "modules/eventsource/EventSourceParser.h" 41 #include "modules/eventsource/EventSourceParser.h"
43 #include "platform/Timer.h" 42 #include "platform/Timer.h"
43 #include "platform/bindings/ActiveScriptWrappable.h"
44 #include "platform/heap/Handle.h" 44 #include "platform/heap/Handle.h"
45 #include "platform/weborigin/KURL.h" 45 #include "platform/weborigin/KURL.h"
46 #include "platform/wtf/Forward.h" 46 #include "platform/wtf/Forward.h"
47 47
48 namespace blink { 48 namespace blink {
49 49
50 class EventSourceInit; 50 class EventSourceInit;
51 class ExceptionState; 51 class ExceptionState;
52 class ResourceResponse; 52 class ResourceResponse;
53 53
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 Member<ThreadableLoader> loader_; 139 Member<ThreadableLoader> loader_;
140 TaskRunnerTimer<EventSource> connect_timer_; 140 TaskRunnerTimer<EventSource> connect_timer_;
141 141
142 unsigned long long reconnect_delay_; 142 unsigned long long reconnect_delay_;
143 String event_stream_origin_; 143 String event_stream_origin_;
144 }; 144 };
145 145
146 } // namespace blink 146 } // namespace blink
147 147
148 #endif // EventSource_h 148 #endif // EventSource_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.h ('k') | third_party/WebKit/Source/modules/fetch/Body.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698