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

Unified Diff: components/sync/core/attachments/in_memory_attachment_store.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/in_memory_attachment_store.h
diff --git a/components/sync/core/attachments/in_memory_attachment_store.h b/components/sync/core/attachments/in_memory_attachment_store.h
index c4025ce3875dffc0c176258f1794fa5fe2a40def..d16546ff55d5767f66917b41a23f8ab771b835f0 100644
--- a/components/sync/core/attachments/in_memory_attachment_store.h
+++ b/components/sync/core/attachments/in_memory_attachment_store.h
@@ -15,7 +15,6 @@
#include "components/sync/api/attachments/attachment_id.h"
#include "components/sync/api/attachments/attachment_store.h"
#include "components/sync/api/attachments/attachment_store_backend.h"
-#include "components/sync/base/sync_export.h"
namespace base {
class SequencedTaskRunner;
@@ -26,8 +25,8 @@ namespace syncer {
// An in-memory implementation of AttachmentStore used for testing.
// InMemoryAttachmentStore is not threadsafe, it lives on backend thread and
// posts callbacks with results on |callback_task_runner|.
-class SYNC_EXPORT InMemoryAttachmentStore : public AttachmentStoreBackend,
- public base::NonThreadSafe {
+class InMemoryAttachmentStore : public AttachmentStoreBackend,
+ public base::NonThreadSafe {
public:
InMemoryAttachmentStore(
const scoped_refptr<base::SequencedTaskRunner>& callback_task_runner);

Powered by Google App Engine
This is Rietveld 408576698