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

Unified Diff: components/sync/core/sync_encryption_handler.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/core/simple_metadata_change_list.h ('k') | components/sync/core/sync_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/core/sync_encryption_handler.h
diff --git a/components/sync/core/sync_encryption_handler.h b/components/sync/core/sync_encryption_handler.h
index 098c974f3e6fb08d5d311682bddd22e7846810b9..45aa304ef10f96a7697930ab8240c0c1855e9c81 100644
--- a/components/sync/core/sync_encryption_handler.h
+++ b/components/sync/core/sync_encryption_handler.h
@@ -9,7 +9,6 @@
#include "base/time/time.h"
#include "components/sync/base/model_type.h"
-#include "components/sync/base/sync_export.h"
#include "components/sync/protocol/sync.pb.h"
namespace syncer {
@@ -51,13 +50,13 @@ enum BootstrapTokenType {
// and keeps the nigori node up to date.
// Implementations of this class must be assumed to be non-thread-safe. All
// methods must be invoked on the sync thread.
-class SYNC_EXPORT SyncEncryptionHandler {
+class SyncEncryptionHandler {
public:
class NigoriState;
// All Observer methods are done synchronously from within a transaction and
// on the sync thread.
- class SYNC_EXPORT Observer {
+ class Observer {
public:
Observer();
@@ -132,7 +131,7 @@ class SYNC_EXPORT SyncEncryptionHandler {
virtual ~Observer();
};
- class SYNC_EXPORT NigoriState {
+ class NigoriState {
public:
NigoriState() {}
sync_pb::NigoriSpecifics nigori_specifics;
« no previous file with comments | « components/sync/core/simple_metadata_change_list.h ('k') | components/sync/core/sync_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698