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

Side by Side Diff: Source/core/page/EventSource.cpp

Issue 373423002: Split Dictionary's get and convert into DictionaryHelper. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed LICENSE and windows build Created 6 years, 5 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
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 * Copyright (C) 2011, Code Aurora Forum. All rights reserved. 4 * Copyright (C) 2011, Code Aurora Forum. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 16 matching lines...) Expand all
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */ 31 */
32 32
33 #include "config.h" 33 #include "config.h"
34 #include "core/page/EventSource.h" 34 #include "core/page/EventSource.h"
35 35
36 #include "bindings/core/v8/Dictionary.h" 36 #include "bindings/core/v8/Dictionary.h"
37 #include "bindings/core/v8/DictionaryHelper.h"
37 #include "bindings/core/v8/ExceptionState.h" 38 #include "bindings/core/v8/ExceptionState.h"
38 #include "bindings/core/v8/ScriptController.h" 39 #include "bindings/core/v8/ScriptController.h"
39 #include "bindings/core/v8/SerializedScriptValue.h" 40 #include "bindings/core/v8/SerializedScriptValue.h"
40 #include "core/dom/Document.h" 41 #include "core/dom/Document.h"
41 #include "core/dom/ExceptionCode.h" 42 #include "core/dom/ExceptionCode.h"
42 #include "core/dom/ExecutionContext.h" 43 #include "core/dom/ExecutionContext.h"
43 #include "core/events/Event.h" 44 #include "core/events/Event.h"
44 #include "core/events/MessageEvent.h" 45 #include "core/events/MessageEvent.h"
45 #include "core/frame/LocalDOMWindow.h" 46 #include "core/frame/LocalDOMWindow.h"
46 #include "core/frame/LocalFrame.h" 47 #include "core/frame/LocalFrame.h"
(...skipping 15 matching lines...) Expand all
62 , m_url(url) 63 , m_url(url)
63 , m_withCredentials(false) 64 , m_withCredentials(false)
64 , m_state(CONNECTING) 65 , m_state(CONNECTING)
65 , m_decoder(TextResourceDecoder::create("text/plain", "UTF-8")) 66 , m_decoder(TextResourceDecoder::create("text/plain", "UTF-8"))
66 , m_connectTimer(this, &EventSource::connectTimerFired) 67 , m_connectTimer(this, &EventSource::connectTimerFired)
67 , m_discardTrailingNewline(false) 68 , m_discardTrailingNewline(false)
68 , m_requestInFlight(false) 69 , m_requestInFlight(false)
69 , m_reconnectDelay(defaultReconnectDelay) 70 , m_reconnectDelay(defaultReconnectDelay)
70 { 71 {
71 ScriptWrappable::init(this); 72 ScriptWrappable::init(this);
72 eventSourceInit.get("withCredentials", m_withCredentials); 73 DictionaryHelper::get(eventSourceInit, "withCredentials", m_withCredentials) ;
73 } 74 }
74 75
75 PassRefPtrWillBeRawPtr<EventSource> EventSource::create(ExecutionContext* contex t, const String& url, const Dictionary& eventSourceInit, ExceptionState& excepti onState) 76 PassRefPtrWillBeRawPtr<EventSource> EventSource::create(ExecutionContext* contex t, const String& url, const Dictionary& eventSourceInit, ExceptionState& excepti onState)
76 { 77 {
77 if (url.isEmpty()) { 78 if (url.isEmpty()) {
78 exceptionState.throwDOMException(SyntaxError, "Cannot open an EventSourc e to an empty URL."); 79 exceptionState.throwDOMException(SyntaxError, "Cannot open an EventSourc e to an empty URL.");
79 return nullptr; 80 return nullptr;
80 } 81 }
81 82
82 KURL fullURL = context->completeURL(url); 83 KURL fullURL = context->completeURL(url);
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 431
431 PassRefPtrWillBeRawPtr<MessageEvent> EventSource::createMessageEvent() 432 PassRefPtrWillBeRawPtr<MessageEvent> EventSource::createMessageEvent()
432 { 433 {
433 RefPtrWillBeRawPtr<MessageEvent> event = MessageEvent::create(); 434 RefPtrWillBeRawPtr<MessageEvent> event = MessageEvent::create();
434 event->initMessageEvent(m_eventName.isEmpty() ? EventTypeNames::message : m_ eventName, false, false, SerializedScriptValue::create(String(m_data)), m_eventS treamOrigin, m_lastEventId, 0, nullptr); 435 event->initMessageEvent(m_eventName.isEmpty() ? EventTypeNames::message : m_ eventName, false, false, SerializedScriptValue::create(String(m_data)), m_eventS treamOrigin, m_lastEventId, 0, nullptr);
435 m_data.clear(); 436 m_data.clear();
436 return event.release(); 437 return event.release();
437 } 438 }
438 439
439 } // namespace WebCore 440 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698