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

Unified Diff: components/sync/api/sync_data.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/api/sync_change_processor.h ('k') | components/sync/api/sync_error.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/api/sync_data.h
diff --git a/components/sync/api/sync_data.h b/components/sync/api/sync_data.h
index adc205b57afb484d09aa803f9549817f09c5ecc2..2ebd47e52a101a69b05dd87f2aaf64886a689c7d 100644
--- a/components/sync/api/sync_data.h
+++ b/components/sync/api/sync_data.h
@@ -18,7 +18,6 @@
#include "components/sync/api/attachments/attachment_id.h"
#include "components/sync/base/immutable.h"
#include "components/sync/base/model_type.h"
-#include "components/sync/base/sync_export.h"
#include "components/sync/base/weak_handle.h"
#include "components/sync/core/attachments/attachment_service_proxy.h"
@@ -35,7 +34,7 @@ class SyncDataRemote;
// A light-weight container for immutable sync data. Pass-by-value and storage
// in STL containers are supported and encouraged if helpful.
-class SYNC_EXPORT SyncData {
+class SyncData {
public:
// Creates an empty and invalid SyncData.
SyncData();
@@ -111,7 +110,7 @@ class SYNC_EXPORT SyncData {
// Necessary since we forward-declare sync_pb::SyncEntity; see
// comments in immutable.h.
- struct SYNC_EXPORT ImmutableSyncEntityTraits {
+ struct ImmutableSyncEntityTraits {
typedef sync_pb::SyncEntity* Wrapper;
static void InitializeWrapper(Wrapper* wrapper);
@@ -151,7 +150,7 @@ class SYNC_EXPORT SyncData {
};
// A SyncData going to the syncer.
-class SYNC_EXPORT SyncDataLocal : public SyncData {
+class SyncDataLocal : public SyncData {
public:
// Construct a SyncDataLocal from a SyncData.
//
@@ -165,7 +164,7 @@ class SYNC_EXPORT SyncDataLocal : public SyncData {
};
// A SyncData that comes from the syncer.
-class SYNC_EXPORT SyncDataRemote : public SyncData {
+class SyncDataRemote : public SyncData {
public:
// Construct a SyncDataRemote from a SyncData.
//
@@ -198,7 +197,7 @@ class SYNC_EXPORT SyncDataRemote : public SyncData {
};
// gmock printer helper.
-void SYNC_EXPORT PrintTo(const SyncData& sync_data, std::ostream* os);
+void PrintTo(const SyncData& sync_data, std::ostream* os);
typedef std::vector<SyncData> SyncDataList;
« no previous file with comments | « components/sync/api/sync_change_processor.h ('k') | components/sync/api/sync_error.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698