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

Side by Side Diff: sync/test/fake_sync_encryption_handler.h

Issue 10827266: [Sync] Add SyncEncryptionHandler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sync/syncable/nigori_util.cc ('k') | sync/test/fake_sync_encryption_handler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef SYNC_SYNCABLE_TEST_FAKE_SYNC_ENCRYPTION_HANDLER_H_
6 #define SYNC_SYNCABLE_TEST_FAKE_SYNC_ENCRYPTION_HANDLER_H_
7
8 #include <string>
9
10 #include "base/compiler_specific.h"
11 #include "base/observer_list.h"
12 #include "sync/internal_api/public/sync_encryption_handler.h"
13 #include "sync/syncable/nigori_handler.h"
14
15 namespace syncer {
16
17 class Cryptographer;
18
19 // A fake sync encryption handler capable of keeping track of the encryption
20 // state without opening any transactions or interacting with the nigori node.
21 // Note that this only performs basic interactions with the cryptographer
22 // (setting pending keys, installing keys).
23 // Note: NOT thread safe. If threads attempt to check encryption state
24 // while another thread is modifying it, races can occur.
25 class FakeSyncEncryptionHandler : public SyncEncryptionHandler,
26 public syncable::NigoriHandler {
27 public:
28 FakeSyncEncryptionHandler();
29 virtual ~FakeSyncEncryptionHandler();
30
31 void set_cryptographer(Cryptographer* cryptographer) {
32 cryptographer_ = cryptographer;
33 }
34
35 // SyncEncryptionHandler implementation.
36 virtual void AddObserver(Observer* observer) OVERRIDE;
37 virtual void RemoveObserver(Observer* observer) OVERRIDE;
38 virtual void Init() OVERRIDE;
39 virtual void SetEncryptionPassphrase(const std::string& passphrase,
40 bool is_explicit) OVERRIDE;
41 virtual void SetDecryptionPassphrase(const std::string& passphrase) OVERRIDE;
42 virtual void EnableEncryptEverything() OVERRIDE;
43 virtual bool EncryptEverythingEnabled() const OVERRIDE;
44 virtual bool IsUsingExplicitPassphrase() const OVERRIDE;
45
46 // NigoriHandler implemenation.
47 virtual void ApplyNigoriUpdate(
48 const sync_pb::NigoriSpecifics& nigori,
49 syncable::BaseTransaction* const trans) OVERRIDE;
50 virtual ModelTypeSet GetEncryptedTypes() const OVERRIDE;
51 virtual void UpdateNigoriFromEncryptedTypes(
52 sync_pb::NigoriSpecifics* nigori,
53 syncable::BaseTransaction* const trans) const OVERRIDE;
54
55 private:
56 ObserverList<SyncEncryptionHandler::Observer> observers_;
57 ModelTypeSet encrypted_types_;
58 bool encrypt_everything_;
59 bool explicit_passphrase_;
60
61 Cryptographer* cryptographer_;
62 };
63
64 } // namespace syncer
65
66 #endif // SYNC_INTERNAL_API_PUBLIC_TEST_FAKE_SYNC_ENCRYPTION_HANDLER_H_
OLDNEW
« no previous file with comments | « sync/syncable/nigori_util.cc ('k') | sync/test/fake_sync_encryption_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698