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

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

Issue 8437002: Move BrowserThread to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A few updates. Created 9 years, 1 month 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/bug_report_data.cc ('k') | chrome/browser/chrome_browser_main.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "ui/base/l10n/l10n_util.h" 18 #include "ui/base/l10n/l10n_util.h"
19 #include "ui/base/l10n/l10n_util_collator.h" 19 #include "ui/base/l10n/l10n_util_collator.h"
20 #include "unicode/ucnv.h" 20 #include "unicode/ucnv.h"
21 21
22 using content::BrowserThread;
23
22 namespace { 24 namespace {
23 25
24 // 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.
25 const size_t kUserSelectedEncodingsMaxLength = 3; 27 const size_t kUserSelectedEncodingsMaxLength = 3;
26 28
27 typedef struct { 29 typedef struct {
28 int resource_id; 30 int resource_id;
29 const char* name; 31 const char* name;
30 int category_string_id; 32 int category_string_id;
31 } CanonicalEncodingData; 33 } CanonicalEncodingData;
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 // Insert new encoding to head of selected encoding list. 537 // Insert new encoding to head of selected encoding list.
536 *selected_encodings = encoding_name; 538 *selected_encodings = encoding_name;
537 // Generate the string for rest selected encoding list. 539 // Generate the string for rest selected encoding list.
538 for (std::vector<int>::const_iterator it = selected_encoding_list.begin(); 540 for (std::vector<int>::const_iterator it = selected_encoding_list.begin();
539 it != selected_encoding_list.end(); ++it) { 541 it != selected_encoding_list.end(); ++it) {
540 selected_encodings->append(1, L','); 542 selected_encodings->append(1, L',');
541 selected_encodings->append(GetCanonicalEncodingNameByCommandId(*it)); 543 selected_encodings->append(GetCanonicalEncodingNameByCommandId(*it));
542 } 544 }
543 return true; 545 return true;
544 } 546 }
OLDNEW
« no previous file with comments | « chrome/browser/bug_report_data.cc ('k') | chrome/browser/chrome_browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698