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

Side by Side Diff: chrome/common/l10n_util.h

Issue 21533: I forgot to add #include <functional> to l10n_util.h for using binary_functio... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 10 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 | 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 // 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 CHROME_COMMON_L10N_UTIL_H_
9 #define CHROME_COMMON_L10N_UTIL_H_ 9 #define CHROME_COMMON_L10N_UTIL_H_
10 10
11 #include "build/build_config.h" 11 #include "build/build_config.h"
12 12
13 #if defined(OS_WIN) 13 #if defined(OS_WIN)
14 #include <windows.h> 14 #include <windows.h>
15 #endif 15 #endif
16 #include <algorithm> 16 #include <algorithm>
17 #include <functional>
17 #include <string> 18 #include <string>
18 #include <vector> 19 #include <vector>
19 20
20 #include "base/basictypes.h" 21 #include "base/basictypes.h"
21 #include "base/logging.h" 22 #include "base/logging.h"
22 #include "base/scoped_ptr.h" 23 #include "base/scoped_ptr.h"
23 #include "base/string_util.h" 24 #include "base/string_util.h"
24 #include "third_party/icu38/public/common/unicode/ubidi.h" 25 #include "third_party/icu38/public/common/unicode/ubidi.h"
25 #include "unicode/coll.h" 26 #include "unicode/coll.h"
26 #include "unicode/locid.h" 27 #include "unicode/locid.h"
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 277
277 private: 278 private:
278 UBiDi* bidi_; 279 UBiDi* bidi_;
279 280
280 DISALLOW_COPY_AND_ASSIGN(BiDiLineIterator); 281 DISALLOW_COPY_AND_ASSIGN(BiDiLineIterator);
281 }; 282 };
282 283
283 } 284 }
284 285
285 #endif // CHROME_COMMON_L10N_UTIL_H_ 286 #endif // CHROME_COMMON_L10N_UTIL_H_
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