| 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 29 matching lines...) Expand all Loading... |
| 40 #include "sky/engine/core/editing/UndoStack.h" | 40 #include "sky/engine/core/editing/UndoStack.h" |
| 41 #include "sky/engine/core/events/PageTransitionEvent.h" | 41 #include "sky/engine/core/events/PageTransitionEvent.h" |
| 42 #include "sky/engine/core/fetch/FetchContext.h" | 42 #include "sky/engine/core/fetch/FetchContext.h" |
| 43 #include "sky/engine/core/fetch/ResourceFetcher.h" | 43 #include "sky/engine/core/fetch/ResourceFetcher.h" |
| 44 #include "sky/engine/core/fetch/ResourceLoader.h" | 44 #include "sky/engine/core/fetch/ResourceLoader.h" |
| 45 #include "sky/engine/core/frame/FrameHost.h" | 45 #include "sky/engine/core/frame/FrameHost.h" |
| 46 #include "sky/engine/core/frame/FrameView.h" | 46 #include "sky/engine/core/frame/FrameView.h" |
| 47 #include "sky/engine/core/frame/LocalDOMWindow.h" | 47 #include "sky/engine/core/frame/LocalDOMWindow.h" |
| 48 #include "sky/engine/core/frame/LocalFrame.h" | 48 #include "sky/engine/core/frame/LocalFrame.h" |
| 49 #include "sky/engine/core/frame/Settings.h" | 49 #include "sky/engine/core/frame/Settings.h" |
| 50 #include "sky/engine/core/html/parser/HTMLDocumentParser.h" | |
| 51 #include "sky/engine/core/html/parser/HTMLParserIdioms.h" | |
| 52 #include "sky/engine/core/inspector/ConsoleMessage.h" | 50 #include "sky/engine/core/inspector/ConsoleMessage.h" |
| 53 #include "sky/engine/core/loader/DocumentLoadTiming.h" | 51 #include "sky/engine/core/loader/DocumentLoadTiming.h" |
| 54 #include "sky/engine/core/loader/FrameFetchContext.h" | 52 #include "sky/engine/core/loader/FrameFetchContext.h" |
| 55 #include "sky/engine/core/loader/FrameLoaderClient.h" | 53 #include "sky/engine/core/loader/FrameLoaderClient.h" |
| 56 #include "sky/engine/core/loader/UniqueIdentifier.h" | 54 #include "sky/engine/core/loader/UniqueIdentifier.h" |
| 57 #include "sky/engine/core/page/ChromeClient.h" | 55 #include "sky/engine/core/page/ChromeClient.h" |
| 58 #include "sky/engine/core/page/EventHandler.h" | 56 #include "sky/engine/core/page/EventHandler.h" |
| 59 #include "sky/engine/core/page/Page.h" | 57 #include "sky/engine/core/page/Page.h" |
| 60 #include "sky/engine/platform/Logging.h" | 58 #include "sky/engine/platform/Logging.h" |
| 61 #include "sky/engine/platform/geometry/FloatRect.h" | 59 #include "sky/engine/platform/geometry/FloatRect.h" |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 // still parsing. Failure to do so can cause a world leak. | 152 // still parsing. Failure to do so can cause a world leak. |
| 155 if (m_frame->document()->parsing()) | 153 if (m_frame->document()->parsing()) |
| 156 stopLoading(); | 154 stopLoading(); |
| 157 | 155 |
| 158 m_frame->document()->fetcher()->stopFetching(); | 156 m_frame->document()->fetcher()->stopFetching(); |
| 159 | 157 |
| 160 m_inStopAllLoaders = false; | 158 m_inStopAllLoaders = false; |
| 161 } | 159 } |
| 162 | 160 |
| 163 } // namespace blink | 161 } // namespace blink |
| OLD | NEW |