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

Side by Side Diff: chrome/browser/character_encoding.cc

Issue 11734021: Roll ICU and convert include style to standard Chromium style, (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/autofill/credit_card.cc ('k') | chrome/browser/chromeos/cros/cert_library.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/character_encoding.h" 5 #include "chrome/browser/character_encoding.h"
6 6
7 #include <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/string_tokenizer.h" 12 #include "base/string_tokenizer.h"
13 #include "base/string_util.h" 13 #include "base/string_util.h"
14 #include "base/utf_string_conversions.h" 14 #include "base/utf_string_conversions.h"
15 #include "chrome/app/chrome_command_ids.h" 15 #include "chrome/app/chrome_command_ids.h"
16 #include "content/public/browser/browser_thread.h" 16 #include "content/public/browser/browser_thread.h"
17 #include "grit/generated_resources.h" 17 #include "grit/generated_resources.h"
18 #include "third_party/icu/public/common/unicode/ucnv.h"
18 #include "ui/base/l10n/l10n_util.h" 19 #include "ui/base/l10n/l10n_util.h"
19 #include "ui/base/l10n/l10n_util_collator.h" 20 #include "ui/base/l10n/l10n_util_collator.h"
20 #include "unicode/ucnv.h"
21 21
22 using content::BrowserThread; 22 using content::BrowserThread;
23 23
24 namespace { 24 namespace {
25 25
26 // The maximum length of short list of recently user selected encodings is 3. 26 // The maximum length of short list of recently user selected encodings is 3.
27 const size_t kUserSelectedEncodingsMaxLength = 3; 27 const size_t kUserSelectedEncodingsMaxLength = 3;
28 28
29 typedef struct { 29 typedef struct {
30 int resource_id; 30 int resource_id;
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 // Insert new encoding to head of selected encoding list. 537 // Insert new encoding to head of selected encoding list.
538 *selected_encodings = encoding_name; 538 *selected_encodings = encoding_name;
539 // Generate the string for rest selected encoding list. 539 // Generate the string for rest selected encoding list.
540 for (std::vector<int>::const_iterator it = selected_encoding_list.begin(); 540 for (std::vector<int>::const_iterator it = selected_encoding_list.begin();
541 it != selected_encoding_list.end(); ++it) { 541 it != selected_encoding_list.end(); ++it) {
542 selected_encodings->append(1, L','); 542 selected_encodings->append(1, L',');
543 selected_encodings->append(GetCanonicalEncodingNameByCommandId(*it)); 543 selected_encodings->append(GetCanonicalEncodingNameByCommandId(*it));
544 } 544 }
545 return true; 545 return true;
546 } 546 }
OLDNEW
« no previous file with comments | « chrome/browser/autofill/credit_card.cc ('k') | chrome/browser/chromeos/cros/cert_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698