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

Side by Side Diff: Source/core/rendering/RenderTreeAsText.cpp

Issue 756943002: Remove unnecessary RenderFlowThread usage and inclusion. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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 | « Source/core/rendering/RenderBox.cpp ('k') | Source/core/rendering/RootInlineBox.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) 2004, 2006, 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 22 matching lines...) Expand all
33 #include "core/editing/FrameSelection.h" 33 #include "core/editing/FrameSelection.h"
34 #include "core/frame/FrameView.h" 34 #include "core/frame/FrameView.h"
35 #include "core/frame/LocalFrame.h" 35 #include "core/frame/LocalFrame.h"
36 #include "core/html/HTMLElement.h" 36 #include "core/html/HTMLElement.h"
37 #include "core/page/PrintContext.h" 37 #include "core/page/PrintContext.h"
38 #include "core/rendering/FlowThreadController.h" 38 #include "core/rendering/FlowThreadController.h"
39 #include "core/rendering/InlineTextBox.h" 39 #include "core/rendering/InlineTextBox.h"
40 #include "core/rendering/RenderBR.h" 40 #include "core/rendering/RenderBR.h"
41 #include "core/rendering/RenderDetailsMarker.h" 41 #include "core/rendering/RenderDetailsMarker.h"
42 #include "core/rendering/RenderFileUploadControl.h" 42 #include "core/rendering/RenderFileUploadControl.h"
43 #include "core/rendering/RenderFlowThread.h"
44 #include "core/rendering/RenderInline.h" 43 #include "core/rendering/RenderInline.h"
45 #include "core/rendering/RenderLayer.h" 44 #include "core/rendering/RenderLayer.h"
46 #include "core/rendering/RenderListItem.h" 45 #include "core/rendering/RenderListItem.h"
47 #include "core/rendering/RenderListMarker.h" 46 #include "core/rendering/RenderListMarker.h"
48 #include "core/rendering/RenderPart.h" 47 #include "core/rendering/RenderPart.h"
49 #include "core/rendering/RenderTableCell.h" 48 #include "core/rendering/RenderTableCell.h"
50 #include "core/rendering/RenderView.h" 49 #include "core/rendering/RenderView.h"
51 #include "core/rendering/compositing/CompositedLayerMapping.h" 50 #include "core/rendering/compositing/CompositedLayerMapping.h"
52 #include "core/rendering/svg/RenderSVGContainer.h" 51 #include "core/rendering/svg/RenderSVGContainer.h"
53 #include "core/rendering/svg/RenderSVGGradientStop.h" 52 #include "core/rendering/svg/RenderSVGGradientStop.h"
(...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after
768 element->document().updateLayout(); 767 element->document().updateLayout();
769 768
770 RenderObject* renderer = element->renderer(); 769 RenderObject* renderer = element->renderer();
771 if (!renderer || !renderer->isListItem()) 770 if (!renderer || !renderer->isListItem())
772 return String(); 771 return String();
773 772
774 return toRenderListItem(renderer)->markerText(); 773 return toRenderListItem(renderer)->markerText();
775 } 774 }
776 775
777 } // namespace blink 776 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderBox.cpp ('k') | Source/core/rendering/RootInlineBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698