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

Side by Side Diff: Source/core/layout/LayoutObject.cpp

Issue 1167583003: Move Resource subclasses out of fetch/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/layout/LayoutObject.h ('k') | Source/core/layout/LayoutTableRow.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) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 18 matching lines...) Expand all
29 29
30 #include "core/HTMLNames.h" 30 #include "core/HTMLNames.h"
31 #include "core/css/resolver/StyleResolver.h" 31 #include "core/css/resolver/StyleResolver.h"
32 #include "core/dom/AXObjectCache.h" 32 #include "core/dom/AXObjectCache.h"
33 #include "core/dom/ElementTraversal.h" 33 #include "core/dom/ElementTraversal.h"
34 #include "core/dom/StyleEngine.h" 34 #include "core/dom/StyleEngine.h"
35 #include "core/dom/shadow/ShadowRoot.h" 35 #include "core/dom/shadow/ShadowRoot.h"
36 #include "core/editing/EditingBoundary.h" 36 #include "core/editing/EditingBoundary.h"
37 #include "core/editing/FrameSelection.h" 37 #include "core/editing/FrameSelection.h"
38 #include "core/editing/htmlediting.h" 38 #include "core/editing/htmlediting.h"
39 #include "core/fetch/ResourceLoadPriorityOptimizer.h"
40 #include "core/fetch/ResourceLoader.h" 39 #include "core/fetch/ResourceLoader.h"
41 #include "core/frame/DeprecatedScheduleStyleRecalcDuringLayout.h" 40 #include "core/frame/DeprecatedScheduleStyleRecalcDuringLayout.h"
42 #include "core/frame/EventHandlerRegistry.h" 41 #include "core/frame/EventHandlerRegistry.h"
43 #include "core/frame/FrameView.h" 42 #include "core/frame/FrameView.h"
44 #include "core/frame/LocalFrame.h" 43 #include "core/frame/LocalFrame.h"
45 #include "core/frame/Settings.h" 44 #include "core/frame/Settings.h"
46 #include "core/frame/UseCounter.h" 45 #include "core/frame/UseCounter.h"
47 #include "core/html/HTMLAnchorElement.h" 46 #include "core/html/HTMLAnchorElement.h"
48 #include "core/html/HTMLElement.h" 47 #include "core/html/HTMLElement.h"
49 #include "core/html/HTMLHtmlElement.h" 48 #include "core/html/HTMLHtmlElement.h"
(...skipping 14 matching lines...) Expand all
64 #include "core/layout/LayoutMultiColumnSpannerPlaceholder.h" 63 #include "core/layout/LayoutMultiColumnSpannerPlaceholder.h"
65 #include "core/layout/LayoutObjectInlines.h" 64 #include "core/layout/LayoutObjectInlines.h"
66 #include "core/layout/LayoutPart.h" 65 #include "core/layout/LayoutPart.h"
67 #include "core/layout/LayoutScrollbarPart.h" 66 #include "core/layout/LayoutScrollbarPart.h"
68 #include "core/layout/LayoutTableCaption.h" 67 #include "core/layout/LayoutTableCaption.h"
69 #include "core/layout/LayoutTableCell.h" 68 #include "core/layout/LayoutTableCell.h"
70 #include "core/layout/LayoutTableCol.h" 69 #include "core/layout/LayoutTableCol.h"
71 #include "core/layout/LayoutTableRow.h" 70 #include "core/layout/LayoutTableRow.h"
72 #include "core/layout/LayoutTheme.h" 71 #include "core/layout/LayoutTheme.h"
73 #include "core/layout/LayoutView.h" 72 #include "core/layout/LayoutView.h"
73 #include "core/layout/ResourceLoadPriorityOptimizer.h"
74 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" 74 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h"
75 #include "core/page/AutoscrollController.h" 75 #include "core/page/AutoscrollController.h"
76 #include "core/page/Page.h" 76 #include "core/page/Page.h"
77 #include "core/paint/DeprecatedPaintLayer.h" 77 #include "core/paint/DeprecatedPaintLayer.h"
78 #include "core/paint/ObjectPainter.h" 78 #include "core/paint/ObjectPainter.h"
79 #include "core/style/ContentData.h" 79 #include "core/style/ContentData.h"
80 #include "core/style/ShadowList.h" 80 #include "core/style/ShadowList.h"
81 #include "platform/JSONValues.h" 81 #include "platform/JSONValues.h"
82 #include "platform/RuntimeEnabledFeatures.h" 82 #include "platform/RuntimeEnabledFeatures.h"
83 #include "platform/TraceEvent.h" 83 #include "platform/TraceEvent.h"
(...skipping 3170 matching lines...) Expand 10 before | Expand all | Expand 10 after
3254 const blink::LayoutObject* root = object1; 3254 const blink::LayoutObject* root = object1;
3255 while (root->parent()) 3255 while (root->parent())
3256 root = root->parent(); 3256 root = root->parent();
3257 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0); 3257 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0);
3258 } else { 3258 } else {
3259 fprintf(stderr, "Cannot showLayoutTree. Root is (nil)\n"); 3259 fprintf(stderr, "Cannot showLayoutTree. Root is (nil)\n");
3260 } 3260 }
3261 } 3261 }
3262 3262
3263 #endif 3263 #endif
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutObject.h ('k') | Source/core/layout/LayoutTableRow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698