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

Unified Diff: components/sync/base/cryptographer.h

Issue 2240613002: [Sync] Convert sync to a static library. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Try getting rid of sync_core source set. Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/sync/base/cancelation_signal.h ('k') | components/sync/base/extensions_activity.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/base/cryptographer.h
diff --git a/components/sync/base/cryptographer.h b/components/sync/base/cryptographer.h
index 9ddad9e803c17325e68477ef8fb5412d70989ddf..1ef81d3ecda12526de9d1d19176c2b8dde5c3a1f 100644
--- a/components/sync/base/cryptographer.h
+++ b/components/sync/base/cryptographer.h
@@ -12,7 +12,6 @@
#include "base/macros.h"
#include "base/memory/linked_ptr.h"
#include "components/sync/base/nigori.h"
-#include "components/sync/base/sync_export.h"
#include "components/sync/protocol/encryption.pb.h"
namespace sync_pb {
@@ -24,7 +23,7 @@ namespace syncer {
class Encryptor;
-SYNC_EXPORT extern const char kNigoriTag[];
+extern const char kNigoriTag[];
// The parameters used to initialize a Nigori instance.
struct KeyParams {
@@ -47,7 +46,7 @@ struct KeyParams {
// CanDecrypt should be used to verify whether the Cryptographer can decrypt
// that node. If it cannot, then the application of that update should be
// delayed until after it can be decrypted.
-class SYNC_EXPORT Cryptographer {
+class Cryptographer {
public:
// Does not take ownership of |encryptor|.
explicit Cryptographer(Encryptor* encryptor);
« no previous file with comments | « components/sync/base/cancelation_signal.h ('k') | components/sync/base/extensions_activity.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698