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" |
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
670 } | 671 } |
671 | 672 |
672 // static | 673 // static |
673 bool ProfileInfoCache::IsDefaultAvatarIconUrl(const std::string& url, | 674 bool ProfileInfoCache::IsDefaultAvatarIconUrl(const std::string& url, |
674 size_t* icon_index) { | 675 size_t* icon_index) { |
675 DCHECK(icon_index); | 676 DCHECK(icon_index); |
676 if (url.find(kDefaultUrlPrefix) != 0) | 677 if (url.find(kDefaultUrlPrefix) != 0) |
677 return false; | 678 return false; |
678 | 679 |
679 int int_value = -1; | 680 int int_value = -1; |
680 if (base::StringToInt(url.begin() + strlen(kDefaultUrlPrefix), | 681 if (base::StringToInt(base::StringPiece(url.begin() + |
681 url.end(), | 682 strlen(kDefaultUrlPrefix), |
| 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 |