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

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

Issue 14323004: Make Frame's ScriptController an OwnPtr and remove the #include (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix Created 7 years, 8 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
« no previous file with comments | « Source/core/page/DOMWindow.cpp ('k') | Source/core/page/Frame.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 29 matching lines...) Expand all
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
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
OLDNEW
« no previous file with comments | « Source/core/page/DOMWindow.cpp ('k') | Source/core/page/Frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698