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

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

Issue 25494003: Move geometry classes from core/platform/graphics to platform/geometry (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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/rendering/RenderTableCell.cpp ('k') | Source/core/rendering/RenderTextTrackCue.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 * (C) 1999 Lars Knoll (knoll@kde.org) 2 * (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Dirk Mueller (mueller@kde.org) 3 * (C) 2000 Dirk Mueller (mueller@kde.org)
4 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved.
5 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) 5 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net)
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 12 matching lines...) Expand all
23 */ 23 */
24 24
25 #include "config.h" 25 #include "config.h"
26 #include "core/rendering/RenderText.h" 26 #include "core/rendering/RenderText.h"
27 27
28 #include "core/accessibility/AXObjectCache.h" 28 #include "core/accessibility/AXObjectCache.h"
29 #include "core/dom/Text.h" 29 #include "core/dom/Text.h"
30 #include "core/fetch/TextResourceDecoder.h" 30 #include "core/fetch/TextResourceDecoder.h"
31 #include "core/page/FrameView.h" 31 #include "core/page/FrameView.h"
32 #include "core/page/Settings.h" 32 #include "core/page/Settings.h"
33 #include "core/platform/graphics/FloatQuad.h"
34 #include "core/platform/text/TextBreakIterator.h" 33 #include "core/platform/text/TextBreakIterator.h"
35 #include "core/platform/text/transcoder/FontTranscoder.h" 34 #include "core/platform/text/transcoder/FontTranscoder.h"
36 #include "core/rendering/EllipsisBox.h" 35 #include "core/rendering/EllipsisBox.h"
37 #include "core/rendering/InlineTextBox.h" 36 #include "core/rendering/InlineTextBox.h"
38 #include "core/rendering/RenderBlock.h" 37 #include "core/rendering/RenderBlock.h"
39 #include "core/rendering/RenderCombineText.h" 38 #include "core/rendering/RenderCombineText.h"
40 #include "core/rendering/RenderLayer.h" 39 #include "core/rendering/RenderLayer.h"
41 #include "core/rendering/RenderView.h" 40 #include "core/rendering/RenderView.h"
42 #include "core/rendering/break_lines.h" 41 #include "core/rendering/break_lines.h"
42 #include "platform/geometry/FloatQuad.h"
43 #include "wtf/text/StringBuffer.h" 43 #include "wtf/text/StringBuffer.h"
44 #include "wtf/text/StringBuilder.h" 44 #include "wtf/text/StringBuilder.h"
45 #include "wtf/unicode/CharacterNames.h" 45 #include "wtf/unicode/CharacterNames.h"
46 46
47 using namespace std; 47 using namespace std;
48 using namespace WTF; 48 using namespace WTF;
49 using namespace Unicode; 49 using namespace Unicode;
50 50
51 namespace WebCore { 51 namespace WebCore {
52 52
(...skipping 1804 matching lines...) Expand 10 before | Expand all | Expand 10 after
1857 1857
1858 SecureTextTimer* secureTextTimer = gSecureTextTimers->get(this); 1858 SecureTextTimer* secureTextTimer = gSecureTextTimers->get(this);
1859 if (!secureTextTimer) { 1859 if (!secureTextTimer) {
1860 secureTextTimer = new SecureTextTimer(this); 1860 secureTextTimer = new SecureTextTimer(this);
1861 gSecureTextTimers->add(this, secureTextTimer); 1861 gSecureTextTimers->add(this, secureTextTimer);
1862 } 1862 }
1863 secureTextTimer->restartWithNewText(lastTypedCharacterOffset); 1863 secureTextTimer->restartWithNewText(lastTypedCharacterOffset);
1864 } 1864 }
1865 1865
1866 } // namespace WebCore 1866 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderTableCell.cpp ('k') | Source/core/rendering/RenderTextTrackCue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698