blob: e967600d65de997554b39608d28716fc4e4a417c [file] [log] [blame]
// 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.
#include "sync/internal_api/public/sync_encryption_handler.h"
namespace syncer {
SyncEncryptionHandler::Observer::Observer() {}
SyncEncryptionHandler::Observer::~Observer() {}
SyncEncryptionHandler::SyncEncryptionHandler() {}
SyncEncryptionHandler::~SyncEncryptionHandler() {}
// Static.
ModelTypeSet SyncEncryptionHandler::SensitiveTypes() {
// It has its own encryption scheme, but we include it anyway.
ModelTypeSet types;
types.Put(PASSWORDS);
return types;
}
} // namespace syncer