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

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

Issue 11343004: drive: Add "Delta Update Status" section to chrome:drive-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: polish Created 8 years, 2 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/drive_file_system.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/drive/drive_file_system.h
diff --git a/chrome/browser/chromeos/drive/drive_file_system.h b/chrome/browser/chromeos/drive/drive_file_system.h
index 3f6f1dcea5e7d9dd3fbafc4f0deaecce078a446b..5063415efbe1702dd745ead02da943679e34540e 100644
--- a/chrome/browser/chromeos/drive/drive_file_system.h
+++ b/chrome/browser/chromeos/drive/drive_file_system.h
@@ -721,6 +721,12 @@ class DriveFileSystem : public DriveFileSystemInterface,
// Periodic timer for checking updates.
base::Timer update_timer_;
+ // Time of the last update check.
+ base::Time last_update_check_time_;
+
+ // Error of the last update check.
+ DriveFileError last_update_check_error_;
+
// True if hosted documents should be hidden.
bool hide_hosted_docs_;
@@ -750,6 +756,9 @@ class DriveFileSystem : public DriveFileSystemInterface,
// Polling interval for checking updates in seconds.
int polling_interval_sec_;
+
+ // True if push notification is enabled.
+ bool push_notification_enabled_;
kinaba 2012/10/29 13:12:34 This variable and polling_interval_sec_ are violat
satorux1 2012/11/01 07:20:24 oops. Fixed
};
} // namespace drive
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/drive_file_system.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698