blob: e967600d65de997554b39608d28716fc4e4a417c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// 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
|