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

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: Rebase + made header ordering correct. 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..c6fdf39f9e28e9173a7ad8e553e0c53df93aff89 100644
--- a/chrome/browser/chromeos/gdata/gdata_system_service.h
+++ b/chrome/browser/chromeos/gdata/gdata_system_service.h
@@ -23,6 +23,7 @@ class GDataCache;
class GDataContactsService;
class GDataDownloadObserver;
class GDataFileSystemInterface;
+class GDataFileWriteHelper;
class GDataSyncClient;
class GDataUploader;
@@ -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(); }
+ GDataFileWriteHelper* 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<GDataFileWriteHelper> 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