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

Unified Diff: chrome/browser/sync/engine/syncapi.h

Issue 3814013: FBTF: Monster ctor patch after changing heuristics in clang plugin. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: More add file fail Created 10 years, 2 months 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: chrome/browser/sync/engine/syncapi.h
diff --git a/chrome/browser/sync/engine/syncapi.h b/chrome/browser/sync/engine/syncapi.h
index 8ffd729a319fd1b7c3bcb320a7e2bde775b60caa..cbd8d8b65951392ab92bbcd7f807b54766d04ed4 100644
--- a/chrome/browser/sync/engine/syncapi.h
+++ b/chrome/browser/sync/engine/syncapi.h
@@ -574,7 +574,9 @@ class SyncManager {
ACTION_DELETE,
ACTION_UPDATE,
};
- ChangeRecord() : id(kInvalidId), action(ACTION_ADD) {}
+ ChangeRecord();
+ ~ChangeRecord();
+
int64 id;
Action action;
sync_pb::EntitySpecifics specifics;
@@ -585,9 +587,9 @@ class SyncManager {
// access to unencrypted bits.
class ExtraPasswordChangeRecordData : public ExtraChangeRecordData {
public:
- ExtraPasswordChangeRecordData(const sync_pb::PasswordSpecificsData& data)
- : unencrypted_(data) {}
- virtual ~ExtraPasswordChangeRecordData() {}
+ explicit ExtraPasswordChangeRecordData(
+ const sync_pb::PasswordSpecificsData& data);
+ virtual ~ExtraPasswordChangeRecordData();
const sync_pb::PasswordSpecificsData& unencrypted() {
return unencrypted_;
}
« no previous file with comments | « chrome/browser/sync/engine/net/syncapi_server_connection_manager.cc ('k') | chrome/browser/sync/engine/syncapi.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698