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

Side by Side Diff: app/l10n_util.cc

Issue 267001: Separate out some more ICU from base and into base/i18n.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | « no previous file | app/os_exchange_data_provider_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | app/os_exchange_data_provider_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698