Index: sync/syncable/directory_backing_store.h |
diff --git a/sync/syncable/directory_backing_store.h b/sync/syncable/directory_backing_store.h |
index 81707331586edaa9bbf3967d3efff5c4200b1e4b..b7a97d3c2eb1d5824447b913c58f8b2b78de77cd 100644 |
--- a/sync/syncable/directory_backing_store.h |
+++ b/sync/syncable/directory_backing_store.h |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Copyright 2012 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
@@ -11,6 +11,7 @@ |
#include "base/threading/non_thread_safe.h" |
#include "sql/connection.h" |
#include "sql/statement.h" |
+#include "sync/base/sync_export.h" |
#include "sync/internal_api/public/base/model_type.h" |
#include "sync/syncable/dir_open_result.h" |
#include "sync/syncable/directory.h" |
@@ -23,6 +24,8 @@ class EntitySpecifics; |
namespace syncer { |
namespace syncable { |
+SYNC_EXPORT_PRIVATE extern const int32 kCurrentDBVersion; |
+ |
struct ColumnSpec; |
typedef Directory::MetahandlesIndex MetahandlesIndex; |
@@ -41,7 +44,7 @@ typedef Directory::MetahandlesIndex MetahandlesIndex; |
// 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 DirectoryBackingStore : public base::NonThreadSafe { |
+class SYNC_EXPORT_PRIVATE DirectoryBackingStore : public base::NonThreadSafe { |
public: |
explicit DirectoryBackingStore(const std::string& dir_name); |
virtual ~DirectoryBackingStore(); |