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

Unified Diff: components/sync/api/sync_change.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/model_type_store.h ('k') | components/sync/api/sync_change_processor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/api/sync_change.h
diff --git a/components/sync/api/sync_change.h b/components/sync/api/sync_change.h
index 6017a40a97cf28ba74f9d0c7da38c48015f1aac7..148cedd9641f5a31815dd92172403653664cacf3 100644
--- a/components/sync/api/sync_change.h
+++ b/components/sync/api/sync_change.h
@@ -11,7 +11,6 @@
#include "base/location.h"
#include "components/sync/api/sync_data.h"
-#include "components/sync/base/sync_export.h"
namespace syncer {
@@ -20,7 +19,7 @@ namespace syncer {
// is encapsulated within the SyncChange, which, once created, is immutable.
// Note: it is safe and cheap to pass these by value or make copies, as they do
// not create deep copies of their internal data.
-class SYNC_EXPORT SyncChange {
+class SyncChange {
public:
enum SyncChangeType {
ACTION_INVALID,
@@ -70,7 +69,7 @@ class SYNC_EXPORT SyncChange {
};
// gmock printer helper.
-SYNC_EXPORT void PrintTo(const SyncChange& sync_change, std::ostream* os);
+void PrintTo(const SyncChange& sync_change, std::ostream* os);
} // namespace syncer
« no previous file with comments | « components/sync/api/model_type_store.h ('k') | components/sync/api/sync_change_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698