OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef SYNC_UTIL_CRYPTOGRAPHER_H_ | 5 #ifndef SYNC_UTIL_CRYPTOGRAPHER_H_ |
6 #define SYNC_UTIL_CRYPTOGRAPHER_H_ | 6 #define SYNC_UTIL_CRYPTOGRAPHER_H_ |
7 #pragma once | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 #include <string> | 9 #include <string> |
11 | 10 |
12 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
13 #include "base/memory/linked_ptr.h" | 12 #include "base/memory/linked_ptr.h" |
14 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
15 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
16 #include "sync/internal_api/public/base/model_type.h" | 15 #include "sync/internal_api/public/base/model_type.h" |
17 #include "sync/protocol/encryption.pb.h" | 16 #include "sync/protocol/encryption.pb.h" |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 | 242 |
244 syncer::ModelTypeSet encrypted_types_; | 243 syncer::ModelTypeSet encrypted_types_; |
245 bool encrypt_everything_; | 244 bool encrypt_everything_; |
246 | 245 |
247 DISALLOW_COPY_AND_ASSIGN(Cryptographer); | 246 DISALLOW_COPY_AND_ASSIGN(Cryptographer); |
248 }; | 247 }; |
249 | 248 |
250 } // namespace syncer | 249 } // namespace syncer |
251 | 250 |
252 #endif // SYNC_UTIL_CRYPTOGRAPHER_H_ | 251 #endif // SYNC_UTIL_CRYPTOGRAPHER_H_ |
OLD | NEW |