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

Unified Diff: chrome/browser/chromeos/gdata/gdata_system_service.h

Issue 10827068: gdata: Fix "save as pdf" to work on Google Drive. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename again, stick to UI thread. 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/gdata/gdata_system_service.h
diff --git a/chrome/browser/chromeos/gdata/gdata_system_service.h b/chrome/browser/chromeos/gdata/gdata_system_service.h
index 070fa7718f69a685734624768f5d04ef599ca758..129c13a1d8ec973c611e4e955132ff229b8a4009 100644
--- a/chrome/browser/chromeos/gdata/gdata_system_service.h
+++ b/chrome/browser/chromeos/gdata/gdata_system_service.h
@@ -19,6 +19,7 @@ namespace gdata {
class DocumentsServiceInterface;
class DriveWebAppsRegistry;
+class FileWriteHelper;
class GDataCache;
class GDataContactsService;
class GDataDownloadObserver;
@@ -37,6 +38,7 @@ class GDataSystemService : public ProfileKeyedService {
DocumentsServiceInterface* docs_service() { return documents_service_.get(); }
GDataCache* cache() { return cache_; }
GDataFileSystemInterface* file_system() { return file_system_.get(); }
+ FileWriteHelper* file_write_helper() { return file_write_helper_.get(); }
GDataUploader* uploader() { return uploader_.get(); }
GDataContactsService* contacts_service() { return contacts_service_.get(); }
DriveWebAppsRegistry* webapps_registry() { return webapps_registry_.get(); }
@@ -67,6 +69,7 @@ class GDataSystemService : public ProfileKeyedService {
scoped_ptr<GDataUploader> uploader_;
scoped_ptr<DriveWebAppsRegistry> webapps_registry_;
scoped_ptr<GDataFileSystemInterface> file_system_;
+ scoped_ptr<FileWriteHelper> file_write_helper_;
scoped_ptr<GDataDownloadObserver> download_observer_;
scoped_ptr<GDataSyncClient> sync_client_;
scoped_ptr<GDataContactsService> contacts_service_;

Powered by Google App Engine
This is Rietveld 408576698