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/base/time.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/syncer_error.h ('k') | components/sync/base/unique_position.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/base/time.h
diff --git a/components/sync/base/time.h b/components/sync/base/time.h
index 6150f468d5c0b68b187ad63145c8fac72c4fa987..6e182ab4d057566c81464b7f7ef80535b9b27126 100644
--- a/components/sync/base/time.h
+++ b/components/sync/base/time.h
@@ -12,18 +12,17 @@
#include <string>
#include "base/time/time.h"
-#include "components/sync/base/sync_export.h"
namespace syncer {
// Converts a time object to the format used in sync protobufs (ms
// since the Unix epoch).
-SYNC_EXPORT int64_t TimeToProtoTime(const base::Time& t);
+int64_t TimeToProtoTime(const base::Time& t);
// Converts a time field from sync protobufs to a time object.
-SYNC_EXPORT base::Time ProtoTimeToTime(int64_t proto_t);
+base::Time ProtoTimeToTime(int64_t proto_t);
-SYNC_EXPORT std::string GetTimeDebugString(const base::Time& t);
+std::string GetTimeDebugString(const base::Time& t);
} // namespace syncer
« no previous file with comments | « components/sync/base/syncer_error.h ('k') | components/sync/base/unique_position.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698