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

Unified Diff: chrome/browser/chromeos/gdata/gdata_operations.cc

Issue 10918101: Rename elements of LinkType enum (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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_operations.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_operations.cc b/chrome/browser/chromeos/gdata/gdata_operations.cc
index a1b206e2de7d426964f5a2fcd46bfba1f315527f..c9d2e97392f2b4cb6f38d39f018bf9be8eaa053f 100644
--- a/chrome/browser/chromeos/gdata/gdata_operations.cc
+++ b/chrome/browser/chromeos/gdata/gdata_operations.cc
@@ -585,7 +585,7 @@ void AuthorizeAppsOperation::ParseResponse(
const ScopedVector<Link>& feed_links = entry->links();
for (ScopedVector<Link>::const_iterator iter = feed_links.begin();
iter != feed_links.end(); ++iter) {
- if ((*iter)->type() == Link::OPEN_WITH) {
+ if ((*iter)->type() == Link::kOpenWith) {
base::DictionaryValue* link = new DictionaryValue;
link->SetString(std::string("href"), (*iter)->href().spec());
link->SetString(std::string("mime_type"), (*iter)->mime_type());

Powered by Google App Engine
This is Rietveld 408576698