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 // This file contains utility functions for dealing with localized | 5 // This file contains utility functions for dealing with localized |
6 // content. | 6 // content. |
7 | 7 |
8 #ifndef CHROME_COMMON_L10N_UTIL_H_ | 8 #ifndef APP_L10N_UTIL_H_ |
9 #define CHROME_COMMON_L10N_UTIL_H_ | 9 #define APP_L10N_UTIL_H_ |
10 | 10 |
11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
12 | 12 |
13 #include <algorithm> | 13 #include <algorithm> |
14 #include <functional> | 14 #include <functional> |
15 #include <string> | 15 #include <string> |
16 #include <vector> | 16 #include <vector> |
17 | 17 |
18 #include "base/basictypes.h" | 18 #include "base/basictypes.h" |
19 #include "base/logging.h" | 19 #include "base/logging.h" |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 void GetLogicalRun(int start, int* end, UBiDiLevel* level); | 360 void GetLogicalRun(int start, int* end, UBiDiLevel* level); |
361 | 361 |
362 private: | 362 private: |
363 UBiDi* bidi_; | 363 UBiDi* bidi_; |
364 | 364 |
365 DISALLOW_COPY_AND_ASSIGN(BiDiLineIterator); | 365 DISALLOW_COPY_AND_ASSIGN(BiDiLineIterator); |
366 }; | 366 }; |
367 | 367 |
368 } | 368 } |
369 | 369 |
370 #endif // CHROME_COMMON_L10N_UTIL_H_ | 370 #endif // APP_L10N_UTIL_H_ |
OLD | NEW |