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

Unified Diff: chrome/browser/sync_file_system/drive_file_sync_service.h

Issue 13891016: Merge ChromeOS and SyncFS XMPP Notification into one class (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ChromeOS SigFault fix Created 7 years, 8 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/sync_file_system/drive_file_sync_service.h
diff --git a/chrome/browser/sync_file_system/drive_file_sync_service.h b/chrome/browser/sync_file_system/drive_file_sync_service.h
index d737ce0e63318013f6721e7ad9b088cecb0ac7c4..e01fb84d2d189a6dfa937258c69252371018ad41 100644
--- a/chrome/browser/sync_file_system/drive_file_sync_service.h
+++ b/chrome/browser/sync_file_system/drive_file_sync_service.h
@@ -11,12 +11,11 @@
#include <string>
#include <vector>
-#include "base/callback_forward.h"
+#include "base/callback.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/threading/non_thread_safe.h"
-#include "base/timer.h"
#include "chrome/browser/google_apis/drive_notification_observer.h"
#include "chrome/browser/sync_file_system/drive_file_sync_client_interface.h"
#include "chrome/browser/sync_file_system/drive_metadata_store.h"
@@ -115,7 +114,7 @@ class DriveFileSyncService
virtual void OnNetworkConnected() OVERRIDE;
// google_apis::DriveNotificationObserver implementation.
- virtual void CheckForUpdates() OVERRIDE;
+ virtual void OnNotificationReceived() OVERRIDE;
private:
friend class DriveFileSyncServiceMockTest;
@@ -445,9 +444,6 @@ class DriveFileSyncService
google_apis::GDataErrorCode error,
scoped_ptr<google_apis::ResourceList> changes);
bool GetOriginForEntry(const google_apis::ResourceEntry& entry, GURL* origin);
- void SchedulePolling();
- void OnPollingTimerFired();
- void UpdatePollingDelay(int64 new_delay_sec);
void NotifyObserversFileStatusChanged(const fileapi::FileSystemURL& url,
SyncFileStatus sync_status,
SyncAction action_taken,
@@ -509,11 +505,6 @@ class DriveFileSyncService
// NotifyTaskDone when the task finished.
scoped_ptr<TaskToken> token_;
- // Timer to trigger fetching changes for incremental sync.
- base::OneShotTimer<DriveFileSyncService> polling_timer_;
- // If polling_delay_seconds_ is negative (<0) the timer won't start.
- int64 polling_delay_seconds_;
-
// Is set to true when there's a fair possibility that we have some
// remote changes that haven't been fetched yet.
//
« no previous file with comments | « chrome/browser/google_apis/drive_notification_observer.h ('k') | chrome/browser/sync_file_system/drive_file_sync_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698