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

Unified Diff: components/sync/core/attachments/attachment_util.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
Index: components/sync/core/attachments/attachment_util.h
diff --git a/components/sync/core/attachments/attachment_util.h b/components/sync/core/attachments/attachment_util.h
index 21350ff9999047f55256883d9b26396d8df00b3a..cdf16ca9b540b0101706574642c8331777f5f557 100644
--- a/components/sync/core/attachments/attachment_util.h
+++ b/components/sync/core/attachments/attachment_util.h
@@ -8,7 +8,6 @@
#include <stdint.h>
#include "base/memory/ref_counted.h"
-#include "components/sync/base/sync_export.h"
namespace base {
class RefCountedMemory;
@@ -22,8 +21,7 @@ namespace syncer {
// Ideally this function should be static function in Attachment class, but
// include_rules from sync/api/DEPS don't allow direct dependency on
// third_party.
-SYNC_EXPORT uint32_t
-ComputeCrc32c(const scoped_refptr<base::RefCountedMemory>& data);
+uint32_t ComputeCrc32c(const scoped_refptr<base::RefCountedMemory>& data);
} // namespace syncer

Powered by Google App Engine
This is Rietveld 408576698