| 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 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 674 } | 675 } |
| 675 | 676 |
| 676 // static | 677 // static |
| 677 bool ProfileInfoCache::IsDefaultAvatarIconUrl(const std::string& url, | 678 bool ProfileInfoCache::IsDefaultAvatarIconUrl(const std::string& url, |
| 678 size_t* icon_index) { | 679 size_t* icon_index) { |
| 679 DCHECK(icon_index); | 680 DCHECK(icon_index); |
| 680 if (url.find(kDefaultUrlPrefix) != 0) | 681 if (url.find(kDefaultUrlPrefix) != 0) |
| 681 return false; | 682 return false; |
| 682 | 683 |
| 683 int int_value = -1; | 684 int int_value = -1; |
| 684 if (base::StringToInt(url.begin() + strlen(kDefaultUrlPrefix), | 685 if (base::StringToInt(base::StringPiece(url.begin() + |
| 685 url.end(), | 686 strlen(kDefaultUrlPrefix), |
| 687 url.end()), |
| 686 &int_value)) { | 688 &int_value)) { |
| 687 if (int_value < 0 || | 689 if (int_value < 0 || |
| 688 int_value >= static_cast<int>(kDefaultAvatarIconsCount)) | 690 int_value >= static_cast<int>(kDefaultAvatarIconsCount)) |
| 689 return false; | 691 return false; |
| 690 *icon_index = int_value; | 692 *icon_index = int_value; |
| 691 return true; | 693 return true; |
| 692 } | 694 } |
| 693 | 695 |
| 694 return false; | 696 return false; |
| 695 } | 697 } |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 773 info->GetString(kNameKey, &name); | 775 info->GetString(kNameKey, &name); |
| 774 names.push_back(name); | 776 names.push_back(name); |
| 775 } | 777 } |
| 776 return names; | 778 return names; |
| 777 } | 779 } |
| 778 | 780 |
| 779 // static | 781 // static |
| 780 void ProfileInfoCache::RegisterPrefs(PrefService* prefs) { | 782 void ProfileInfoCache::RegisterPrefs(PrefService* prefs) { |
| 781 prefs->RegisterDictionaryPref(prefs::kProfileInfoCache); | 783 prefs->RegisterDictionaryPref(prefs::kProfileInfoCache); |
| 782 } | 784 } |
| OLD | NEW |