OLD | NEW |
---|---|
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/profiles/profile_info_cache.h" | 5 #include "chrome/browser/profiles/profile_info_cache.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/format_macros.h" | 9 #include "base/format_macros.h" |
10 #include "base/i18n/case_conversion.h" | 10 #include "base/i18n/case_conversion.h" |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/rand_util.h" | 13 #include "base/rand_util.h" |
14 #include "base/stl_util.h" | 14 #include "base/stl_util.h" |
15 #include "base/string_number_conversions.h" | 15 #include "base/string_number_conversions.h" |
16 #include "base/string_piece.h" | |
16 #include "base/stringprintf.h" | 17 #include "base/stringprintf.h" |
17 #include "base/utf_string_conversions.h" | 18 #include "base/utf_string_conversions.h" |
18 #include "base/values.h" | 19 #include "base/values.h" |
19 #include "chrome/browser/browser_process.h" | 20 #include "chrome/browser/browser_process.h" |
20 #include "chrome/browser/prefs/pref_service.h" | 21 #include "chrome/browser/prefs/pref_service.h" |
21 #include "chrome/browser/prefs/scoped_user_pref_update.h" | 22 #include "chrome/browser/prefs/scoped_user_pref_update.h" |
22 #include "chrome/common/chrome_notification_types.h" | 23 #include "chrome/common/chrome_notification_types.h" |
23 #include "chrome/common/pref_names.h" | 24 #include "chrome/common/pref_names.h" |
24 #include "content/public/browser/browser_thread.h" | 25 #include "content/public/browser/browser_thread.h" |
25 #include "content/public/browser/notification_service.h" | 26 #include "content/public/browser/notification_service.h" |
26 #include "grit/generated_resources.h" | 27 #include "grit/generated_resources.h" |
27 #include "grit/theme_resources.h" | 28 #include "grit/theme_resources.h" |
28 #include "third_party/skia/include/core/SkBitmap.h" | 29 #include "third_party/skia/include/core/SkBitmap.h" |
29 #include "ui/base/l10n/l10n_util.h" | 30 #include "ui/base/l10n/l10n_util.h" |
30 #include "ui/base/resource/resource_bundle.h" | 31 #include "ui/base/resource/resource_bundle.h" |
31 #include "ui/gfx/image/image.h" | 32 #include "ui/gfx/image/image.h" |
32 #include "ui/gfx/image/image_util.h" | 33 #include "ui/gfx/image/image_util.h" |
33 | 34 |
35 using base::StringPiece; | |
erikwright (departed)
2011/12/14 19:09:58
Remove 'using' for consistency with cbentzel's com
| |
34 using content::BrowserThread; | 36 using content::BrowserThread; |
35 | 37 |
36 namespace { | 38 namespace { |
37 | 39 |
38 const char kNameKey[] = "name"; | 40 const char kNameKey[] = "name"; |
39 const char kGAIANameKey[] = "gaia_name"; | 41 const char kGAIANameKey[] = "gaia_name"; |
40 const char kUseGAIANameKey[] = "use_gaia_name"; | 42 const char kUseGAIANameKey[] = "use_gaia_name"; |
41 const char kUserNameKey[] = "user_name"; | 43 const char kUserNameKey[] = "user_name"; |
42 const char kAvatarIconKey[] = "avatar_icon"; | 44 const char kAvatarIconKey[] = "avatar_icon"; |
43 const char kUseGAIAPictureKey[] = "use_gaia_picture"; | 45 const char kUseGAIAPictureKey[] = "use_gaia_picture"; |
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
670 } | 672 } |
671 | 673 |
672 // static | 674 // static |
673 bool ProfileInfoCache::IsDefaultAvatarIconUrl(const std::string& url, | 675 bool ProfileInfoCache::IsDefaultAvatarIconUrl(const std::string& url, |
674 size_t* icon_index) { | 676 size_t* icon_index) { |
675 DCHECK(icon_index); | 677 DCHECK(icon_index); |
676 if (url.find(kDefaultUrlPrefix) != 0) | 678 if (url.find(kDefaultUrlPrefix) != 0) |
677 return false; | 679 return false; |
678 | 680 |
679 int int_value = -1; | 681 int int_value = -1; |
680 if (base::StringToInt(url.begin() + strlen(kDefaultUrlPrefix), | 682 if (base::StringToInt(StringPiece(url.begin() + strlen(kDefaultUrlPrefix), |
681 url.end(), | 683 url.end()), |
682 &int_value)) { | 684 &int_value)) { |
683 if (int_value < 0 || | 685 if (int_value < 0 || |
684 int_value >= static_cast<int>(kDefaultAvatarIconsCount)) | 686 int_value >= static_cast<int>(kDefaultAvatarIconsCount)) |
685 return false; | 687 return false; |
686 *icon_index = int_value; | 688 *icon_index = int_value; |
687 return true; | 689 return true; |
688 } | 690 } |
689 | 691 |
690 return false; | 692 return false; |
691 } | 693 } |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
769 info->GetString(kNameKey, &name); | 771 info->GetString(kNameKey, &name); |
770 names.push_back(name); | 772 names.push_back(name); |
771 } | 773 } |
772 return names; | 774 return names; |
773 } | 775 } |
774 | 776 |
775 // static | 777 // static |
776 void ProfileInfoCache::RegisterPrefs(PrefService* prefs) { | 778 void ProfileInfoCache::RegisterPrefs(PrefService* prefs) { |
777 prefs->RegisterDictionaryPref(prefs::kProfileInfoCache); | 779 prefs->RegisterDictionaryPref(prefs::kProfileInfoCache); |
778 } | 780 } |
OLD | NEW |