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

Unified Diff: components/sync/syncable/directory.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/syncable/directory.h
diff --git a/components/sync/syncable/directory.h b/components/sync/syncable/directory.h
index ba8738e809962c1f9450eb7e70d2d018f80ff198..6100d00afaf39d23d712a92199c2b2e9e3351763 100644
--- a/components/sync/syncable/directory.h
+++ b/components/sync/syncable/directory.h
@@ -21,7 +21,6 @@
#include "base/macros.h"
#include "base/values.h"
#include "components/sync/api/attachments/attachment_id.h"
-#include "components/sync/base/sync_export.h"
#include "components/sync/base/weak_handle.h"
#include "components/sync/syncable/dir_open_result.h"
#include "components/sync/syncable/entry.h"
@@ -59,7 +58,7 @@ enum InvariantCheckLevel {
// This class is tightly coupled to several other classes via Directory::Kernel.
// Although Directory's kernel_ is exposed via public accessor it should be
// treated as pseudo-private.
-class SYNC_EXPORT Directory {
+class Directory {
public:
typedef std::vector<int64_t> Metahandles;
@@ -82,7 +81,7 @@ class SYNC_EXPORT Directory {
// Various data that the Directory::Kernel we are backing (persisting data
// for) needs saved across runs of the application.
- struct SYNC_EXPORT PersistedKernelInfo {
+ struct PersistedKernelInfo {
PersistedKernelInfo();
~PersistedKernelInfo();
@@ -126,7 +125,7 @@ class SYNC_EXPORT Directory {
// When the Directory is told to SaveChanges, a SaveChangesSnapshot is
// constructed and forms a consistent snapshot of what needs to be sent to
// the backing store.
- struct SYNC_EXPORT SaveChangesSnapshot {
+ struct SaveChangesSnapshot {
SaveChangesSnapshot();
~SaveChangesSnapshot();
« no previous file with comments | « components/sync/sessions_impl/sync_session_context.h ('k') | components/sync/syncable/directory_backing_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698