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

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 2316533004: Don't include headers from the layout API from other headers needlessly. (Closed)
Patch Set: The runway sure is slippery today. Created 4 years, 3 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
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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 #include "core/inspector/ConsoleMessage.h" 179 #include "core/inspector/ConsoleMessage.h"
180 #include "core/inspector/InspectorInstrumentation.h" 180 #include "core/inspector/InspectorInstrumentation.h"
181 #include "core/inspector/InspectorTraceEvents.h" 181 #include "core/inspector/InspectorTraceEvents.h"
182 #include "core/inspector/InstanceCounters.h" 182 #include "core/inspector/InstanceCounters.h"
183 #include "core/inspector/MainThreadDebugger.h" 183 #include "core/inspector/MainThreadDebugger.h"
184 #include "core/layout/HitTestCanvasResult.h" 184 #include "core/layout/HitTestCanvasResult.h"
185 #include "core/layout/HitTestResult.h" 185 #include "core/layout/HitTestResult.h"
186 #include "core/layout/LayoutPart.h" 186 #include "core/layout/LayoutPart.h"
187 #include "core/layout/LayoutView.h" 187 #include "core/layout/LayoutView.h"
188 #include "core/layout/TextAutosizer.h" 188 #include "core/layout/TextAutosizer.h"
189 #include "core/layout/api/LayoutPartItem.h"
189 #include "core/layout/api/LayoutViewItem.h" 190 #include "core/layout/api/LayoutViewItem.h"
190 #include "core/layout/compositing/PaintLayerCompositor.h" 191 #include "core/layout/compositing/PaintLayerCompositor.h"
191 #include "core/loader/CookieJar.h" 192 #include "core/loader/CookieJar.h"
192 #include "core/loader/DocumentLoader.h" 193 #include "core/loader/DocumentLoader.h"
193 #include "core/loader/FrameFetchContext.h" 194 #include "core/loader/FrameFetchContext.h"
194 #include "core/loader/FrameLoader.h" 195 #include "core/loader/FrameLoader.h"
195 #include "core/loader/FrameLoaderClient.h" 196 #include "core/loader/FrameLoaderClient.h"
196 #include "core/loader/ImageLoader.h" 197 #include "core/loader/ImageLoader.h"
197 #include "core/loader/NavigationScheduler.h" 198 #include "core/loader/NavigationScheduler.h"
198 #include "core/loader/PrerendererClient.h" 199 #include "core/loader/PrerendererClient.h"
(...skipping 5889 matching lines...) Expand 10 before | Expand all | Expand 10 after
6088 } 6089 }
6089 6090
6090 void showLiveDocumentInstances() 6091 void showLiveDocumentInstances()
6091 { 6092 {
6092 WeakDocumentSet& set = liveDocumentSet(); 6093 WeakDocumentSet& set = liveDocumentSet();
6093 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6094 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6094 for (Document* document : set) 6095 for (Document* document : set)
6095 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get String().utf8().data()); 6096 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get String().utf8().data());
6096 } 6097 }
6097 #endif 6098 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698