Index: components/sync/syncable/directory_backing_store.h |
diff --git a/components/sync/syncable/directory_backing_store.h b/components/sync/syncable/directory_backing_store.h |
index 1dd16ee4dd9b8711c3079698931bcd1f22dbe769..1c0cdde786df6eb4f8d22ae5e2aecf5aae70a3fe 100644 |
--- a/components/sync/syncable/directory_backing_store.h |
+++ b/components/sync/syncable/directory_backing_store.h |
@@ -14,7 +14,6 @@ |
#include "base/macros.h" |
#include "base/threading/non_thread_safe.h" |
#include "components/sync/base/model_type.h" |
-#include "components/sync/base/sync_export.h" |
#include "components/sync/syncable/dir_open_result.h" |
#include "components/sync/syncable/directory.h" |
#include "components/sync/syncable/metahandle_set.h" |
@@ -28,8 +27,8 @@ class EntitySpecifics; |
namespace syncer { |
namespace syncable { |
-SYNC_EXPORT extern const int32_t kCurrentDBVersion; |
-SYNC_EXPORT extern const int32_t kCurrentPageSizeKB; |
+extern const int32_t kCurrentDBVersion; |
+extern const int32_t kCurrentPageSizeKB; |
struct ColumnSpec; |
@@ -48,7 +47,7 @@ struct ColumnSpec; |
// This class is abstract so that we can extend it in interesting ways for use |
// in tests. The concrete class used in non-test scenarios is |
// OnDiskDirectoryBackingStore. |
-class SYNC_EXPORT DirectoryBackingStore : public base::NonThreadSafe { |
+class DirectoryBackingStore : public base::NonThreadSafe { |
public: |
explicit DirectoryBackingStore(const std::string& dir_name); |
virtual ~DirectoryBackingStore(); |