summaryrefslogtreecommitdiffstats
path: root/sync/engine/commit.h
diff options
context:
space:
mode:
authorskym <skym@chromium.org>2015-12-07 14:20:43 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-07 22:21:29 +0000
commit1621aa930169650b0c4c371e743f3be58a70abae (patch)
tree48a2f45aa4f4dedbb8d783c75eb0b57506c1d3d7 /sync/engine/commit.h
parent7d1fe34ef189666e5b828cc8b1b11c5516da902d (diff)
downloadchromium_src-1621aa930169650b0c4c371e743f3be58a70abae.zip
chromium_src-1621aa930169650b0c4c371e743f3be58a70abae.tar.gz
chromium_src-1621aa930169650b0c4c371e743f3be58a70abae.tar.bz2
[Sync] Removing SYNC_EXPORT_PRIVATE macro and fixing lint violations on
all touched files. BUG=554242,567301 Review URL: https://codereview.chromium.org/1509563002 Cr-Commit-Position: refs/heads/master@{#363603}
Diffstat (limited to 'sync/engine/commit.h')
-rw-r--r--sync/engine/commit.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sync/engine/commit.h b/sync/engine/commit.h
index 871229f6..3baee67 100644
--- a/sync/engine/commit.h
+++ b/sync/engine/commit.h
@@ -6,6 +6,7 @@
#define SYNC_ENGINE_COMMIT_H_
#include <map>
+#include <string>
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
@@ -36,7 +37,7 @@ class Syncer;
// been acceptable to let this class be a dumb container object, it turns out
// that there was no other convenient place to put the Init() and
// PostAndProcessCommitResponse() functions. So they ended up here.
-class SYNC_EXPORT_PRIVATE Commit {
+class SYNC_EXPORT Commit {
public:
typedef std::map<ModelType, scoped_ptr<CommitContribution>> ContributionMap;