Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Unified Diff: sync/internal_api/public/change_record.h

Issue 11515009: [sync] Componentize sync: Part 2: Add SYNC_EXPORTs to files in src/sync/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;
};

Powered by Google App Engine
This is Rietveld 408576698