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

Unified Diff: chrome/browser/chromeos/gdata/gdata_parser.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
Index: chrome/browser/chromeos/gdata/gdata_parser.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_parser.cc b/chrome/browser/chromeos/gdata/gdata_parser.cc
index cb39a958a7e2ecb325e00d232cd04ecdb31d68e8..7cd8edbded8541dcac47b2950db8b4837c872eb0 100644
--- a/chrome/browser/chromeos/gdata/gdata_parser.cc
+++ b/chrome/browser/chromeos/gdata/gdata_parser.cc
@@ -928,7 +928,7 @@ InstalledApp::IconList InstalledApp::GetIconsForCategory(
AppIcon::IconCategory category) const {
IconList result;
- for (ScopedVector<AppIcon>::const_iterator icon_iter = app_icons_->begin();
+ for (ScopedVector<AppIcon>::const_iterator icon_iter = app_icons_.begin();
icon_iter != app_icons_.end(); ++icon_iter) {
if ((*icon_iter)->category() != category)
continue;
@@ -945,7 +945,7 @@ InstalledApp::IconList InstalledApp::GetIconsForCategory(
}
GURL InstalledApp::GetProductUrl() const {
- for (ScopedVector<Link>::const_iterator it = links_->begin();
+ for (ScopedVector<Link>::const_iterator it = links_.begin();
it != links_.end(); ++it) {
const Link* link = *it;
if (link->type() == Link::PRODUCT)
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_file_system.cc ('k') | chrome/browser/chromeos/gdata/gdata_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698