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

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

Issue 20253002: core/rendering: Include wtf files using "wtf/foo.h" form. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixes Created 7 years, 5 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/RenderText.h ('k') | Source/core/rendering/RenderTextControl.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 * (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 24 matching lines...) Expand all
35 #include "core/platform/text/Hyphenation.h" 35 #include "core/platform/text/Hyphenation.h"
36 #include "core/platform/text/TextBreakIterator.h" 36 #include "core/platform/text/TextBreakIterator.h"
37 #include "core/platform/text/transcoder/FontTranscoder.h" 37 #include "core/platform/text/transcoder/FontTranscoder.h"
38 #include "core/rendering/EllipsisBox.h" 38 #include "core/rendering/EllipsisBox.h"
39 #include "core/rendering/InlineTextBox.h" 39 #include "core/rendering/InlineTextBox.h"
40 #include "core/rendering/RenderBlock.h" 40 #include "core/rendering/RenderBlock.h"
41 #include "core/rendering/RenderCombineText.h" 41 #include "core/rendering/RenderCombineText.h"
42 #include "core/rendering/RenderLayer.h" 42 #include "core/rendering/RenderLayer.h"
43 #include "core/rendering/RenderView.h" 43 #include "core/rendering/RenderView.h"
44 #include "core/rendering/break_lines.h" 44 #include "core/rendering/break_lines.h"
45 #include <wtf/text/StringBuffer.h> 45 #include "wtf/text/StringBuffer.h"
46 #include <wtf/unicode/CharacterNames.h> 46 #include "wtf/unicode/CharacterNames.h"
47 47
48 using namespace std; 48 using namespace std;
49 using namespace WTF; 49 using namespace WTF;
50 using namespace Unicode; 50 using namespace Unicode;
51 51
52 namespace WebCore { 52 namespace WebCore {
53 53
54 struct SameSizeAsRenderText : public RenderObject { 54 struct SameSizeAsRenderText : public RenderObject {
55 uint32_t bitfields : 16; 55 uint32_t bitfields : 16;
56 float widths[4]; 56 float widths[4];
(...skipping 1873 matching lines...) Expand 10 before | Expand all | Expand 10 after
1930 1930
1931 SecureTextTimer* secureTextTimer = gSecureTextTimers->get(this); 1931 SecureTextTimer* secureTextTimer = gSecureTextTimers->get(this);
1932 if (!secureTextTimer) { 1932 if (!secureTextTimer) {
1933 secureTextTimer = new SecureTextTimer(this); 1933 secureTextTimer = new SecureTextTimer(this);
1934 gSecureTextTimers->add(this, secureTextTimer); 1934 gSecureTextTimers->add(this, secureTextTimer);
1935 } 1935 }
1936 secureTextTimer->restartWithNewText(lastTypedCharacterOffset); 1936 secureTextTimer->restartWithNewText(lastTypedCharacterOffset);
1937 } 1937 }
1938 1938
1939 } // namespace WebCore 1939 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderText.h ('k') | Source/core/rendering/RenderTextControl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698