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

Unified Diff: components/sync/core/attachments/attachment_service_proxy.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_service_proxy.h
diff --git a/components/sync/core/attachments/attachment_service_proxy.h b/components/sync/core/attachments/attachment_service_proxy.h
index d76aea0f8886929b6d3a3c6e38eac027acccd970..b7a4e73a1d16352ec63229b21427105bb4cff9ab 100644
--- a/components/sync/core/attachments/attachment_service_proxy.h
+++ b/components/sync/core/attachments/attachment_service_proxy.h
@@ -11,7 +11,6 @@
#include "base/sequenced_task_runner.h"
#include "base/task_runner.h"
#include "components/sync/api/attachments/attachment.h"
-#include "components/sync/base/sync_export.h"
#include "components/sync/core/attachments/attachment_service.h"
namespace syncer {
@@ -31,7 +30,7 @@ namespace syncer {
// correct thread (wrapped_task_runner).
//
// This class is thread-safe and is designed to be passed by const-ref.
-class SYNC_EXPORT AttachmentServiceProxy : public AttachmentService {
+class AttachmentServiceProxy : public AttachmentService {
public:
// Default copy and assignment are welcome.
@@ -69,8 +68,8 @@ class SYNC_EXPORT AttachmentServiceProxy : public AttachmentService {
//
// Calls to objects of this class become no-ops once its wrapped object is
// destroyed.
- class SYNC_EXPORT Core : public AttachmentService,
- public base::RefCountedThreadSafe<Core> {
+ class Core : public AttachmentService,
+ public base::RefCountedThreadSafe<Core> {
public:
// Construct an AttachmentServiceProxyCore that forwards calls to |wrapped|.
explicit Core(const base::WeakPtr<syncer::AttachmentService>& wrapped);

Powered by Google App Engine
This is Rietveld 408576698