| 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 * 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 29 matching lines...) Expand all Loading... |
| 40 #include "Event.h" | 40 #include "Event.h" |
| 41 #include "EventException.h" | 41 #include "EventException.h" |
| 42 #include "ExceptionCode.h" | 42 #include "ExceptionCode.h" |
| 43 #include "Frame.h" | 43 #include "Frame.h" |
| 44 #include "MemoryCache.h" | 44 #include "MemoryCache.h" |
| 45 #include "MessageEvent.h" | 45 #include "MessageEvent.h" |
| 46 #include "ResourceError.h" | 46 #include "ResourceError.h" |
| 47 #include "ResourceRequest.h" | 47 #include "ResourceRequest.h" |
| 48 #include "ResourceResponse.h" | 48 #include "ResourceResponse.h" |
| 49 #include "ScriptCallStack.h" | 49 #include "ScriptCallStack.h" |
| 50 #include "ScriptController.h" |
| 50 #include "ScriptExecutionContext.h" | 51 #include "ScriptExecutionContext.h" |
| 51 #include "SecurityOrigin.h" | 52 #include "SecurityOrigin.h" |
| 52 #include "SerializedScriptValue.h" | 53 #include "SerializedScriptValue.h" |
| 53 #include "TextResourceDecoder.h" | 54 #include "TextResourceDecoder.h" |
| 54 #include "ThreadableLoader.h" | 55 #include "ThreadableLoader.h" |
| 55 #include <wtf/text/StringBuilder.h> | 56 #include <wtf/text/StringBuilder.h> |
| 56 | 57 |
| 57 namespace WebCore { | 58 namespace WebCore { |
| 58 | 59 |
| 59 const unsigned long long EventSource::defaultReconnectDelay = 3000; | 60 const unsigned long long EventSource::defaultReconnectDelay = 3000; |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 { | 423 { |
| 423 return &m_eventTargetData; | 424 return &m_eventTargetData; |
| 424 } | 425 } |
| 425 | 426 |
| 426 EventTargetData* EventSource::ensureEventTargetData() | 427 EventTargetData* EventSource::ensureEventTargetData() |
| 427 { | 428 { |
| 428 return &m_eventTargetData; | 429 return &m_eventTargetData; |
| 429 } | 430 } |
| 430 | 431 |
| 431 } // namespace WebCore | 432 } // namespace WebCore |
| OLD | NEW |