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

Unified Diff: chrome/browser/chromeos/drive/drive_system_service.h

Issue 11365249: drive: Event logger for chrome:drive-internals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fix (#5) Created 8 years, 1 month 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/drive_system_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/drive/drive_system_service.h
diff --git a/chrome/browser/chromeos/drive/drive_system_service.h b/chrome/browser/chromeos/drive/drive_system_service.h
index 50e55da45b72a9d786aff0eb5b78025459ffb732..dbf54fabbea74ea18b5b10ffbae0ae002ca6d576 100644
--- a/chrome/browser/chromeos/drive/drive_system_service.h
+++ b/chrome/browser/chromeos/drive/drive_system_service.h
@@ -29,9 +29,10 @@ class DriveCache;
class DriveDownloadObserver;
class DriveFileSystemInterface;
class DriveWebAppsRegistry;
-class FileWriteHelper;
class DriveSyncClient;
class DrivePrefetcher;
+class EventLogger;
+class FileWriteHelper;
class StaleCacheFilesRemover;
// DriveSystemService runs the Drive system, including the Drive file system
@@ -52,6 +53,7 @@ class DriveSystemService : public ProfileKeyedService,
FileWriteHelper* file_write_helper() { return file_write_helper_.get(); }
google_apis::DriveUploader* uploader() { return uploader_.get(); }
DriveWebAppsRegistry* webapps_registry() { return webapps_registry_.get(); }
+ EventLogger* event_logger() { return event_logger_.get(); }
// Clears all the local cache files and in-memory data, and remounts the file
// system.
@@ -112,6 +114,7 @@ class DriveSystemService : public ProfileKeyedService,
bool push_notification_registered_;
scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_;
+ scoped_ptr<EventLogger> event_logger_;
DriveCache* cache_;
scoped_ptr<google_apis::DriveServiceInterface> drive_service_;
scoped_ptr<google_apis::DriveUploader> uploader_;
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/drive_system_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698