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

Unified Diff: chrome/browser/chromeos/extensions/file_browser_private_api.cc

Issue 10690149: gdata: Move GDataCache::CacheEntry out of GDataCache (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removing the existing test Created 8 years, 5 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/extensions/file_browser_private_api.cc
diff --git a/chrome/browser/chromeos/extensions/file_browser_private_api.cc b/chrome/browser/chromeos/extensions/file_browser_private_api.cc
index a34a36e0983f232860a1780f4da439d3afe62f40..4a157b362841649bbdd550ef2036349e64c7a32e 100644
--- a/chrome/browser/chromeos/extensions/file_browser_private_api.cc
+++ b/chrome/browser/chromeos/extensions/file_browser_private_api.cc
@@ -260,7 +260,7 @@ void IntersectAvailableDriveTasks(
ScopedVector<gdata::DriveWebAppInfo> info;
registry->GetWebAppsForFile(*iter, std::string(""), &info);
std::vector<gdata::DriveWebAppInfo*> info_ptrs;
- info.release(&info_ptrs); // so they don't go away prematurely.
+ info.release(&info_ptrs); // so they don't go away prematurely.
std::set<std::string> apps_for_this_file;
for (std::vector<gdata::DriveWebAppInfo*>::iterator
apps = info_ptrs.begin(); apps != info_ptrs.end(); ++apps) {
@@ -1877,7 +1877,7 @@ void GetGDataFilePropertiesFunction::OnOperationComplete(
void GetGDataFilePropertiesFunction::CacheStateReceived(
base::DictionaryValue* property_dict,
bool /* success */,
- const gdata::GDataCache::CacheEntry& cache_entry) {
+ const gdata::GDataCacheEntry& cache_entry) {
// In case of an error (i.e. success is false), cache_entry.cache_state is
// set to CACHE_STATE_NONE.
property_dict->SetBoolean("isPinned", cache_entry.IsPinned());

Powered by Google App Engine
This is Rietveld 408576698