Index: sync/internal_api/public/change_record.h |
diff --git a/sync/internal_api/public/change_record.h b/sync/internal_api/public/change_record.h |
index 876e45033587dd818864afe5295a39dd2af655cf..d0abdfa080f40be442c54c02ced4defadaee6d50 100644 |
--- a/sync/internal_api/public/change_record.h |
+++ b/sync/internal_api/public/change_record.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. |
@@ -9,6 +9,7 @@ |
#include "base/basictypes.h" |
#include "base/memory/linked_ptr.h" |
+#include "sync/base/sync_export.h" |
#include "sync/internal_api/public/util/immutable.h" |
#include "sync/protocol/password_specifics.pb.h" |
#include "sync/protocol/sync.pb.h" |
@@ -31,7 +32,7 @@ class ExtraPasswordChangeRecordData { |
// Transfers ownership of the DictionaryValue to the caller. |
virtual base::DictionaryValue* ToValue() const; |
- const sync_pb::PasswordSpecificsData& unencrypted() const; |
+ SYNC_EXPORT const sync_pb::PasswordSpecificsData& unencrypted() const; |
akalin
2012/12/11 00:02:52
isn't this an error? Shouldn't it be the class th
Raghu Simha
2012/12/11 01:27:51
Interesting. I was initially trying to export the
|
private: |
sync_pb::PasswordSpecificsData unencrypted_; |
}; |