| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "app/l10n_util.h" | 5 #include "app/l10n_util.h" |
| 6 | 6 |
| 7 #include <cstdlib> | 7 #include <cstdlib> |
| 8 #include "app/app_paths.h" | 8 #include "app/app_paths.h" |
| 9 #include "app/app_switches.h" | 9 #include "app/app_switches.h" |
| 10 #include "app/gfx/canvas.h" | 10 #include "app/gfx/canvas.h" |
| 11 #include "app/resource_bundle.h" | 11 #include "app/resource_bundle.h" |
| 12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
| 13 #include "base/file_util.h" | 13 #include "base/file_util.h" |
| 14 #include "base/i18n/file_util_icu.h" |
| 14 #include "base/path_service.h" | 15 #include "base/path_service.h" |
| 15 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
| 16 #include "base/string16.h" | 17 #include "base/string16.h" |
| 17 #include "base/string_piece.h" | 18 #include "base/string_piece.h" |
| 18 #include "base/string_util.h" | 19 #include "base/string_util.h" |
| 19 #include "base/sys_string_conversions.h" | 20 #include "base/sys_string_conversions.h" |
| 20 #include "build/build_config.h" | 21 #include "build/build_config.h" |
| 21 #include "unicode/uscript.h" | 22 #include "unicode/uscript.h" |
| 22 | 23 |
| 23 #if defined(TOOLKIT_GTK) | 24 #if defined(TOOLKIT_GTK) |
| (...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1030 } | 1031 } |
| 1031 | 1032 |
| 1032 void BiDiLineIterator::GetLogicalRun(int start, | 1033 void BiDiLineIterator::GetLogicalRun(int start, |
| 1033 int* end, | 1034 int* end, |
| 1034 UBiDiLevel* level) { | 1035 UBiDiLevel* level) { |
| 1035 DCHECK(bidi_ != NULL); | 1036 DCHECK(bidi_ != NULL); |
| 1036 ubidi_getLogicalRun(bidi_, start, end, level); | 1037 ubidi_getLogicalRun(bidi_, start, end, level); |
| 1037 } | 1038 } |
| 1038 | 1039 |
| 1039 } | 1040 } |
| OLD | NEW |