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

Side by Side Diff: sky/engine/core/loader/FrameLoader.cpp

Issue 721473002: Removed ScrollingCoordinator and a bunch of composited scrolling' (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: cr comments Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/core/frame/LocalFrame.cpp ('k') | sky/engine/core/page/Page.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) 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 #include "core/inspector/ConsoleMessage.h" 55 #include "core/inspector/ConsoleMessage.h"
56 #include "core/loader/DocumentLoadTiming.h" 56 #include "core/loader/DocumentLoadTiming.h"
57 #include "core/loader/FrameFetchContext.h" 57 #include "core/loader/FrameFetchContext.h"
58 #include "core/loader/FrameLoaderClient.h" 58 #include "core/loader/FrameLoaderClient.h"
59 #include "core/loader/UniqueIdentifier.h" 59 #include "core/loader/UniqueIdentifier.h"
60 #include "core/page/Chrome.h" 60 #include "core/page/Chrome.h"
61 #include "core/page/ChromeClient.h" 61 #include "core/page/ChromeClient.h"
62 #include "core/page/EventHandler.h" 62 #include "core/page/EventHandler.h"
63 #include "core/page/Page.h" 63 #include "core/page/Page.h"
64 #include "core/frame/Settings.h" 64 #include "core/frame/Settings.h"
65 #include "core/page/scrolling/ScrollingCoordinator.h"
66 #include "platform/Logging.h" 65 #include "platform/Logging.h"
67 #include "platform/UserGestureIndicator.h" 66 #include "platform/UserGestureIndicator.h"
68 #include "platform/geometry/FloatRect.h" 67 #include "platform/geometry/FloatRect.h"
69 #include "platform/network/HTTPParsers.h" 68 #include "platform/network/HTTPParsers.h"
70 #include "platform/network/ResourceRequest.h" 69 #include "platform/network/ResourceRequest.h"
71 #include "platform/scroll/ScrollAnimator.h" 70 #include "platform/scroll/ScrollAnimator.h"
72 #include "platform/weborigin/SecurityPolicy.h" 71 #include "platform/weborigin/SecurityPolicy.h"
73 #include "public/platform/WebURLRequest.h" 72 #include "public/platform/WebURLRequest.h"
74 #include "wtf/TemporaryChange.h" 73 #include "wtf/TemporaryChange.h"
75 #include "wtf/text/CString.h" 74 #include "wtf/text/CString.h"
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 // still parsing. Failure to do so can cause a world leak. 161 // still parsing. Failure to do so can cause a world leak.
163 if (m_frame->document()->parsing()) 162 if (m_frame->document()->parsing())
164 stopLoading(); 163 stopLoading();
165 164
166 m_frame->document()->fetcher()->stopFetching(); 165 m_frame->document()->fetcher()->stopFetching();
167 166
168 m_inStopAllLoaders = false; 167 m_inStopAllLoaders = false;
169 } 168 }
170 169
171 } // namespace blink 170 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/frame/LocalFrame.cpp ('k') | sky/engine/core/page/Page.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698