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

Side by Side Diff: sky/engine/core/dom/Document.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/core.gni ('k') | sky/engine/core/frame/FrameView.cpp » ('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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 #include "core/inspector/InspectorTraceEvents.h" 117 #include "core/inspector/InspectorTraceEvents.h"
118 #include "core/inspector/ScriptCallStack.h" 118 #include "core/inspector/ScriptCallStack.h"
119 #include "core/loader/FrameLoaderClient.h" 119 #include "core/loader/FrameLoaderClient.h"
120 #include "core/loader/ImageLoader.h" 120 #include "core/loader/ImageLoader.h"
121 #include "core/page/Chrome.h" 121 #include "core/page/Chrome.h"
122 #include "core/page/ChromeClient.h" 122 #include "core/page/ChromeClient.h"
123 #include "core/page/EventHandler.h" 123 #include "core/page/EventHandler.h"
124 #include "core/page/EventWithHitTestResults.h" 124 #include "core/page/EventWithHitTestResults.h"
125 #include "core/page/FocusController.h" 125 #include "core/page/FocusController.h"
126 #include "core/page/Page.h" 126 #include "core/page/Page.h"
127 #include "core/page/scrolling/ScrollingCoordinator.h"
128 #include "core/rendering/HitTestResult.h" 127 #include "core/rendering/HitTestResult.h"
129 #include "core/rendering/RenderView.h" 128 #include "core/rendering/RenderView.h"
130 #include "core/rendering/compositing/RenderLayerCompositor.h" 129 #include "core/rendering/compositing/RenderLayerCompositor.h"
131 #include "platform/DateComponents.h" 130 #include "platform/DateComponents.h"
132 #include "platform/EventDispatchForbiddenScope.h" 131 #include "platform/EventDispatchForbiddenScope.h"
133 #include "platform/Language.h" 132 #include "platform/Language.h"
134 #include "platform/Logging.h" 133 #include "platform/Logging.h"
135 #include "platform/RuntimeEnabledFeatures.h" 134 #include "platform/RuntimeEnabledFeatures.h"
136 #include "platform/ScriptForbiddenScope.h" 135 #include "platform/ScriptForbiddenScope.h"
137 #include "platform/TraceEvent.h" 136 #include "platform/TraceEvent.h"
(...skipping 2771 matching lines...) Expand 10 before | Expand all | Expand 10 after
2909 using namespace blink; 2908 using namespace blink;
2910 void showLiveDocumentInstances() 2909 void showLiveDocumentInstances()
2911 { 2910 {
2912 WeakDocumentSet& set = liveDocumentSet(); 2911 WeakDocumentSet& set = liveDocumentSet();
2913 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 2912 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
2914 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it ) { 2913 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it ) {
2915 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut f8().data()); 2914 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut f8().data());
2916 } 2915 }
2917 } 2916 }
2918 #endif 2917 #endif
OLDNEW
« no previous file with comments | « sky/engine/core/core.gni ('k') | sky/engine/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698