| 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)
|
|
|