| OLD | NEW |
| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 // loader, and therefore the methods of this class for receiving | 87 // loader, and therefore the methods of this class for receiving |
| 88 // asynchronous events from the loader won't be invoked. | 88 // asynchronous events from the loader won't be invoked. |
| 89 virtual void stop() OVERRIDE; | 89 virtual void stop() OVERRIDE; |
| 90 | 90 |
| 91 virtual bool hasPendingActivity() const OVERRIDE; | 91 virtual bool hasPendingActivity() const OVERRIDE; |
| 92 | 92 |
| 93 private: | 93 private: |
| 94 EventSource(ExecutionContext*, const KURL&, const EventSourceInit&); | 94 EventSource(ExecutionContext*, const KURL&, const EventSourceInit&); |
| 95 | 95 |
| 96 virtual void didReceiveResponse(unsigned long, const ResourceResponse&) OVER
RIDE; | 96 virtual void didReceiveResponse(unsigned long, const ResourceResponse&) OVER
RIDE; |
| 97 virtual void didReceiveData(const char*, int) OVERRIDE; | 97 virtual void didReceiveData(const char*, unsigned) OVERRIDE; |
| 98 virtual void didFinishLoading(unsigned long, double) OVERRIDE; | 98 virtual void didFinishLoading(unsigned long, double) OVERRIDE; |
| 99 virtual void didFail(const ResourceError&) OVERRIDE; | 99 virtual void didFail(const ResourceError&) OVERRIDE; |
| 100 virtual void didFailAccessControlCheck(const ResourceError&) OVERRIDE; | 100 virtual void didFailAccessControlCheck(const ResourceError&) OVERRIDE; |
| 101 virtual void didFailRedirectCheck() OVERRIDE; | 101 virtual void didFailRedirectCheck() OVERRIDE; |
| 102 | 102 |
| 103 void scheduleInitialConnect(); | 103 void scheduleInitialConnect(); |
| 104 void connect(); | 104 void connect(); |
| 105 void networkRequestEnded(); | 105 void networkRequestEnded(); |
| 106 void scheduleReconnect(); | 106 void scheduleReconnect(); |
| 107 void connectTimerFired(Timer<EventSource>*); | 107 void connectTimerFired(Timer<EventSource>*); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 125 Vector<UChar> m_data; | 125 Vector<UChar> m_data; |
| 126 AtomicString m_currentlyParsedEventId; | 126 AtomicString m_currentlyParsedEventId; |
| 127 AtomicString m_lastEventId; | 127 AtomicString m_lastEventId; |
| 128 unsigned long long m_reconnectDelay; | 128 unsigned long long m_reconnectDelay; |
| 129 String m_eventStreamOrigin; | 129 String m_eventStreamOrigin; |
| 130 }; | 130 }; |
| 131 | 131 |
| 132 } // namespace blink | 132 } // namespace blink |
| 133 | 133 |
| 134 #endif // EventSource_h | 134 #endif // EventSource_h |
| OLD | NEW |