Index: sync/internal_api/public/util/syncer_error.h |
diff --git a/sync/internal_api/public/util/syncer_error.h b/sync/internal_api/public/util/syncer_error.h |
index 4e70dc13549af56280121f09b251d5e852b8f56d..3e0bae25e7d681b52b0c0a06b1422fdf2282990b 100644 |
--- a/sync/internal_api/public/util/syncer_error.h |
+++ b/sync/internal_api/public/util/syncer_error.h |
@@ -1,10 +1,12 @@ |
-// 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. |
#ifndef SYNC_INTERNAL_API_PUBLIC_UTIL_SYNCER_ERROR_H_ |
#define SYNC_INTERNAL_API_PUBLIC_UTIL_SYNCER_ERROR_H_ |
+#include "sync/base/sync_export.h" |
+ |
namespace syncer { |
// This enum describes all the ways a SyncerCommand can fail. |
@@ -41,7 +43,7 @@ enum SyncerError { |
SYNCER_OK |
}; |
-const char * GetSyncerErrorString(SyncerError); |
+SYNC_EXPORT const char * GetSyncerErrorString(SyncerError); |
akalin
2012/12/11 00:02:52
remove the space before * since you're here
Raghu Simha
2012/12/11 01:27:51
Done.
|
// Helper to check that |error| is set to something (not UNSET) and is not |
// SYNCER_OK. |