| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. |
| 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> | 5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> |
| 6 * Copyright (C) Research In Motion Limited 2009. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2009. All rights reserved. |
| 7 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com> | 7 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com> |
| 8 * Copyright (C) 2011 Google Inc. All rights reserved. | 8 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 9 * | 9 * |
| 10 * Redistribution and use in source and binary forms, with or without | 10 * Redistribution and use in source and binary forms, with or without |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 #include "sky/engine/core/frame/LocalDOMWindow.h" | 51 #include "sky/engine/core/frame/LocalDOMWindow.h" |
| 52 #include "sky/engine/core/frame/LocalFrame.h" | 52 #include "sky/engine/core/frame/LocalFrame.h" |
| 53 #include "sky/engine/core/frame/Settings.h" | 53 #include "sky/engine/core/frame/Settings.h" |
| 54 #include "sky/engine/core/html/parser/HTMLDocumentParser.h" | 54 #include "sky/engine/core/html/parser/HTMLDocumentParser.h" |
| 55 #include "sky/engine/core/html/parser/HTMLParserIdioms.h" | 55 #include "sky/engine/core/html/parser/HTMLParserIdioms.h" |
| 56 #include "sky/engine/core/inspector/ConsoleMessage.h" | 56 #include "sky/engine/core/inspector/ConsoleMessage.h" |
| 57 #include "sky/engine/core/loader/DocumentLoadTiming.h" | 57 #include "sky/engine/core/loader/DocumentLoadTiming.h" |
| 58 #include "sky/engine/core/loader/FrameFetchContext.h" | 58 #include "sky/engine/core/loader/FrameFetchContext.h" |
| 59 #include "sky/engine/core/loader/FrameLoaderClient.h" | 59 #include "sky/engine/core/loader/FrameLoaderClient.h" |
| 60 #include "sky/engine/core/loader/UniqueIdentifier.h" | 60 #include "sky/engine/core/loader/UniqueIdentifier.h" |
| 61 #include "sky/engine/core/page/Chrome.h" | |
| 62 #include "sky/engine/core/page/ChromeClient.h" | 61 #include "sky/engine/core/page/ChromeClient.h" |
| 63 #include "sky/engine/core/page/EventHandler.h" | 62 #include "sky/engine/core/page/EventHandler.h" |
| 64 #include "sky/engine/core/page/Page.h" | 63 #include "sky/engine/core/page/Page.h" |
| 65 #include "sky/engine/platform/Logging.h" | 64 #include "sky/engine/platform/Logging.h" |
| 66 #include "sky/engine/platform/geometry/FloatRect.h" | 65 #include "sky/engine/platform/geometry/FloatRect.h" |
| 67 #include "sky/engine/platform/network/HTTPParsers.h" | 66 #include "sky/engine/platform/network/HTTPParsers.h" |
| 68 #include "sky/engine/platform/network/ResourceRequest.h" | 67 #include "sky/engine/platform/network/ResourceRequest.h" |
| 69 #include "sky/engine/platform/scroll/ScrollAnimator.h" | 68 #include "sky/engine/platform/scroll/ScrollAnimator.h" |
| 70 #include "sky/engine/platform/weborigin/SecurityPolicy.h" | 69 #include "sky/engine/platform/weborigin/SecurityPolicy.h" |
| 71 #include "sky/engine/public/platform/WebURLRequest.h" | 70 #include "sky/engine/public/platform/WebURLRequest.h" |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 // still parsing. Failure to do so can cause a world leak. | 159 // still parsing. Failure to do so can cause a world leak. |
| 161 if (m_frame->document()->parsing()) | 160 if (m_frame->document()->parsing()) |
| 162 stopLoading(); | 161 stopLoading(); |
| 163 | 162 |
| 164 m_frame->document()->fetcher()->stopFetching(); | 163 m_frame->document()->fetcher()->stopFetching(); |
| 165 | 164 |
| 166 m_inStopAllLoaders = false; | 165 m_inStopAllLoaders = false; |
| 167 } | 166 } |
| 168 | 167 |
| 169 } // namespace blink | 168 } // namespace blink |
| OLD | NEW |