blob: e50ecf5da53f1c5fb0eaf49f865110d42606694e [file] [log] [blame]
// Copyright 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.
#ifndef COMPONENTS_SYNC_SYNCABLE_NIGORI_HANDLER_H_
#define COMPONENTS_SYNC_SYNCABLE_NIGORI_HANDLER_H_
#include <string>
#include "components/sync/base/model_type.h"
namespace sync_pb {
class NigoriSpecifics;
}
namespace syncer {
enum class PassphraseType;
namespace syncable {
class BaseTransaction;
// Sync internal interface for dealing with nigori node and querying
// the current set of encrypted types. Not thread safe, so a sync transaction
// must be held by a caller whenever invoking methods.
class NigoriHandler {
public:
NigoriHandler();
virtual ~NigoriHandler();
// Apply a nigori node update, updating the internal encryption state
// accordingly.
virtual void ApplyNigoriUpdate(const sync_pb::NigoriSpecifics& nigori,
syncable::BaseTransaction* const trans) = 0;
// Store the current encrypt everything/encrypted types state into |nigori|.
virtual void UpdateNigoriFromEncryptedTypes(
sync_pb::NigoriSpecifics* nigori,
syncable::BaseTransaction* const trans) const = 0;
// Returns the set of currently encrypted types.
virtual ModelTypeSet GetEncryptedTypes(
syncable::BaseTransaction* const trans) const = 0;
// Returns current value for the passphrase type.
virtual PassphraseType GetPassphraseType(
syncable::BaseTransaction* const trans) const = 0;
};
} // namespace syncable
} // namespace syncer
#endif // COMPONENTS_SYNC_SYNCABLE_NIGORI_HANDLER_H_