summaryrefslogtreecommitdiffstats
path: root/chromium/sync/engine/all_status.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/sync/engine/all_status.h')
-rw-r--r--chromium/sync/engine/all_status.h86
1 files changed, 0 insertions, 86 deletions
diff --git a/chromium/sync/engine/all_status.h b/chromium/sync/engine/all_status.h
deleted file mode 100644
index 8954eaeb99a..00000000000
--- a/chromium/sync/engine/all_status.h
+++ /dev/null
@@ -1,86 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-//
-// The AllStatus object watches various sync engine components and aggregates
-// the status of all of them into one place.
-
-#ifndef SYNC_INTERNAL_API_ALL_STATUS_H_
-#define SYNC_INTERNAL_API_ALL_STATUS_H_
-
-#include <map>
-#include <string>
-
-#include "base/compiler_specific.h"
-#include "base/synchronization/lock.h"
-#include "sync/engine/sync_engine_event.h"
-#include "sync/engine/syncer_types.h"
-#include "sync/internal_api/public/base/model_type.h"
-#include "sync/internal_api/public/engine/sync_status.h"
-#include "sync/engine/nudge_source.h"
-
-namespace syncer {
-
-class ScopedStatusLock;
-struct ServerConnectionEvent;
-
-// This class collects data and uses it to update its internal state. It can
-// return a snapshot of this state as a SyncerStatus object.
-//
-// Most of this data ends up on the about:sync page. But the page is only
-// 'pinged' to update itself at the end of a sync cycle. A user could refresh
-// manually, but unless their timing is excellent it's unlikely that a user will
-// see any state in mid-sync cycle. We have no plans to change this. However,
-// we will continue to collect data and update state mid-sync-cycle in case we
-// need to debug slow or stuck sync cycles.
-class AllStatus : public SyncEngineEventListener {
- friend class ScopedStatusLock;
- public:
- AllStatus();
- virtual ~AllStatus();
-
- virtual void OnSyncEngineEvent(const SyncEngineEvent& event) OVERRIDE;
-
- SyncStatus status() const;
-
- void SetNotificationsEnabled(bool notifications_enabled);
-
- void IncrementNotifiableCommits();
-
- void IncrementNotificationsReceived();
-
- void SetEncryptedTypes(ModelTypeSet types);
- void SetCryptographerReady(bool ready);
- void SetCryptoHasPendingKeys(bool has_pending_keys);
- void SetPassphraseType(PassphraseType type);
- void SetHasKeystoreKey(bool has_keystore_key);
- void SetKeystoreMigrationTime(const base::Time& migration_time);
-
- void SetSyncId(const std::string& sync_id);
- void SetInvalidatorClientId(const std::string& invalidator_client_id);
-
- void IncrementNudgeCounter(NudgeSource source);
-
- protected:
- // Examines syncer to calculate syncing and the unsynced count,
- // and returns a Status with new values.
- SyncStatus CalcSyncing(const SyncEngineEvent& event) const;
- SyncStatus CreateBlankStatus() const;
-
- SyncStatus status_;
-
- mutable base::Lock mutex_; // Protects all data members.
- DISALLOW_COPY_AND_ASSIGN(AllStatus);
-};
-
-class ScopedStatusLock {
- public:
- explicit ScopedStatusLock(AllStatus* allstatus);
- ~ScopedStatusLock();
- protected:
- AllStatus* allstatus_;
-};
-
-} // namespace syncer
-
-#endif // SYNC_INTERNAL_API_ALL_STATUS_H_