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

Side by Side Diff: Source/core/editing/iterators/TextIterator.cpp

Issue 923953002: Move rendering/RenderImage* to layout/LayoutImage* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « Source/core/editing/Editor.cpp ('k') | Source/core/fetch/ImageResourceClient.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) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved.
3 * Copyright (C) 2005 Alexey Proskuryakov. 3 * Copyright (C) 2005 Alexey Proskuryakov.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 28 matching lines...) Expand all
39 #include "core/editing/iterators/CharacterIterator.h" 39 #include "core/editing/iterators/CharacterIterator.h"
40 #include "core/editing/iterators/WordAwareIterator.h" 40 #include "core/editing/iterators/WordAwareIterator.h"
41 #include "core/frame/FrameView.h" 41 #include "core/frame/FrameView.h"
42 #include "core/html/HTMLElement.h" 42 #include "core/html/HTMLElement.h"
43 #include "core/html/HTMLImageElement.h" 43 #include "core/html/HTMLImageElement.h"
44 #include "core/html/HTMLInputElement.h" 44 #include "core/html/HTMLInputElement.h"
45 #include "core/html/HTMLTextFormControlElement.h" 45 #include "core/html/HTMLTextFormControlElement.h"
46 #include "core/layout/LayoutTableCell.h" 46 #include "core/layout/LayoutTableCell.h"
47 #include "core/layout/LayoutTableRow.h" 47 #include "core/layout/LayoutTableRow.h"
48 #include "core/layout/line/InlineTextBox.h" 48 #include "core/layout/line/InlineTextBox.h"
49 #include "core/rendering/RenderImage.h"
50 #include "core/rendering/RenderTextControl.h" 49 #include "core/rendering/RenderTextControl.h"
51 #include "core/rendering/RenderTextFragment.h" 50 #include "core/rendering/RenderTextFragment.h"
52 #include "platform/fonts/Font.h" 51 #include "platform/fonts/Font.h"
53 #include "wtf/text/CString.h" 52 #include "wtf/text/CString.h"
54 #include "wtf/text/StringBuilder.h" 53 #include "wtf/text/StringBuilder.h"
55 #include <unicode/utf16.h> 54 #include <unicode/utf16.h>
56 55
57 using namespace WTF::Unicode; 56 using namespace WTF::Unicode;
58 57
59 namespace blink { 58 namespace blink {
(...skipping 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after
1178 return createPlainText(it); 1177 return createPlainText(it);
1179 } 1178 }
1180 1179
1181 String plainText(const Position& start, const Position& end, TextIteratorBehavio rFlags behavior) 1180 String plainText(const Position& start, const Position& end, TextIteratorBehavio rFlags behavior)
1182 { 1181 {
1183 TextIterator it(start, end, behavior); 1182 TextIterator it(start, end, behavior);
1184 return createPlainText(it); 1183 return createPlainText(it);
1185 } 1184 }
1186 1185
1187 } 1186 }
OLDNEW
« no previous file with comments | « Source/core/editing/Editor.cpp ('k') | Source/core/fetch/ImageResourceClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698