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

Unified Diff: chrome/browser/chromeos/gdata/drive_webapps_registry.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/drive_webapps_registry.cc
diff --git a/chrome/browser/chromeos/gdata/drive_webapps_registry.cc b/chrome/browser/chromeos/gdata/drive_webapps_registry.cc
index c1a56a1f33154af09a6dfaa3a297a5fc608ba15f..1b0e051bbdb7e05c9a2cd77975031828e2c02af3 100644
--- a/chrome/browser/chromeos/gdata/drive_webapps_registry.cc
+++ b/chrome/browser/chromeos/gdata/drive_webapps_registry.cc
@@ -133,8 +133,8 @@ void DriveWebAppsRegistry::UpdateFromFeed(AccountMetadataFeed* metadata) {
STLDeleteValues(&webapp_extension_map_);
STLDeleteValues(&webapp_mimetypes_map_);
for (ScopedVector<InstalledApp>::const_iterator it =
- metadata->installed_apps()->begin();
- it != metadata->installed_apps()->end(); ++it) {
+ metadata->installed_apps().begin();
+ it != metadata->installed_apps().end(); ++it) {
const InstalledApp* app = *it;
GURL product_url = app->GetProductUrl();
if (product_url.is_empty())
« no previous file with comments | « chrome/browser/autofill/personal_data_manager.cc ('k') | chrome/browser/chromeos/gdata/gdata_file_system.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698