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

Unified Diff: chrome/browser/autofill/personal_data_manager.cc

Issue 10669038: base: Remove dereference structure operator (i.e ->) from ScopedVector. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/autofill/form_structure.cc ('k') | chrome/browser/chromeos/gdata/drive_webapps_registry.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/personal_data_manager.cc
diff --git a/chrome/browser/autofill/personal_data_manager.cc b/chrome/browser/autofill/personal_data_manager.cc
index 1bc4deddca3dffe17c471bfd0dee3ffe5bac7b09..2185c6c89fbf8ae996f467095b133dea364a41da 100644
--- a/chrome/browser/autofill/personal_data_manager.cc
+++ b/chrome/browser/autofill/personal_data_manager.cc
@@ -427,8 +427,8 @@ void PersonalDataManager::RemoveProfile(const std::string& guid) {
AutofillProfile* PersonalDataManager::GetProfileByGUID(
const std::string& guid) {
- for (std::vector<AutofillProfile*>::iterator iter = web_profiles_->begin();
- iter != web_profiles_->end(); ++iter) {
+ for (std::vector<AutofillProfile*>::iterator iter = web_profiles_.begin();
+ iter != web_profiles_.end(); ++iter) {
if ((*iter)->guid() == guid)
return *iter;
}
« no previous file with comments | « chrome/browser/autofill/form_structure.cc ('k') | chrome/browser/chromeos/gdata/drive_webapps_registry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698