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

Side by Side Diff: Source/platform/text/TextBreakIteratorICU.cpp

Issue 104603004: Minor clean-up: Remove unneeded header files. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removing more unrequired header files Created 6 years, 11 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 | « no previous file | no next file » | 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) 2006 Lars Knoll <lars@trolltech.com> 2 * Copyright (C) 2006 Lars Knoll <lars@trolltech.com>
3 * Copyright (C) 2007, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2007, 2011, 2012 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 * 19 *
20 */ 20 */
21 21
22 #include "config.h" 22 #include "config.h"
23 #include "platform/text/TextBreakIterator.h" 23 #include "platform/text/TextBreakIterator.h"
24 24
25 #include "platform/text/TextBreakIteratorInternalICU.h" 25 #include "platform/text/TextBreakIteratorInternalICU.h"
26 #include "wtf/Assertions.h"
27 #include "wtf/HashMap.h"
28 #include "wtf/PassOwnPtr.h" 26 #include "wtf/PassOwnPtr.h"
29 #include "wtf/ThreadSpecific.h" 27 #include "wtf/ThreadSpecific.h"
30 #include "wtf/ThreadingPrimitives.h" 28 #include "wtf/ThreadingPrimitives.h"
31 #include "wtf/text/AtomicString.h"
32 #include "wtf/text/CString.h" 29 #include "wtf/text/CString.h"
33 #include "wtf/text/WTFString.h"
34 #include <unicode/ubrk.h>
lgombos 2014/06/16 18:40:29 Is it is you need to include ubrk.h to get the def
35 30
36 using namespace WTF; 31 using namespace WTF;
37 using namespace std; 32 using namespace std;
38 33
39 namespace WebCore { 34 namespace WebCore {
40 35
41 class LineBreakIteratorPool { 36 class LineBreakIteratorPool {
42 WTF_MAKE_NONCOPYABLE(LineBreakIteratorPool); 37 WTF_MAKE_NONCOPYABLE(LineBreakIteratorPool);
43 public: 38 public:
44 static LineBreakIteratorPool& sharedPool() 39 static LineBreakIteratorPool& sharedPool()
(...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after
837 "$Tel1 $TelV $Tel0;" // Telugu Virama (backward) 832 "$Tel1 $TelV $Tel0;" // Telugu Virama (backward)
838 "$Kan1 $KanV $Kan0;" // Kannada Virama (backward) 833 "$Kan1 $KanV $Kan0;" // Kannada Virama (backward)
839 "$Mal1 $MalV $Mal0;" // Malayalam Virama (backward) 834 "$Mal1 $MalV $Mal0;" // Malayalam Virama (backward)
840 "!!safe_reverse;" 835 "!!safe_reverse;"
841 "!!safe_forward;"; 836 "!!safe_forward;";
842 837
843 return setUpIteratorWithRules(kRules, string, length); 838 return setUpIteratorWithRules(kRules, string, length);
844 } 839 }
845 840
846 } 841 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698