| Index: chrome/browser/sync/engine/syncapi.h
|
| ===================================================================
|
| --- chrome/browser/sync/engine/syncapi.h (revision 56425)
|
| +++ chrome/browser/sync/engine/syncapi.h (working copy)
|
| @@ -79,7 +79,6 @@
|
| class BookmarkSpecifics;
|
| class EntitySpecifics;
|
| class ExtensionSpecifics;
|
| -class SessionSpecifics;
|
| class NigoriSpecifics;
|
| class PasswordSpecifics;
|
| class PreferenceSpecifics;
|
| @@ -209,10 +208,6 @@
|
| // data. Can only be called if GetModelType() == EXTENSIONS.
|
| const sync_pb::ExtensionSpecifics& GetExtensionSpecifics() const;
|
|
|
| - // Getter specific to the SESSIONS datatype. Returns protobuf
|
| - // data. Can only be called if GetModelType() == SESSIONS.
|
| - const sync_pb::SessionSpecifics& GetSessionSpecifics() const;
|
| -
|
| // Returns the local external ID associated with the node.
|
| int64 GetExternalId() const;
|
|
|
| @@ -358,10 +353,6 @@
|
| // Should only be called if GetModelType() == EXTENSIONS.
|
| void SetExtensionSpecifics(const sync_pb::ExtensionSpecifics& specifics);
|
|
|
| - // Set the session specifics (windows, tabs, navigations etc.).
|
| - // Should only be called if GetModelType() == SESSIONS.
|
| - void SetSessionSpecifics(const sync_pb::SessionSpecifics& specifics);
|
| -
|
| // Implementation of BaseNode's abstract virtual accessors.
|
| virtual const syncable::Entry* GetEntry() const;
|
|
|
| @@ -399,8 +390,6 @@
|
| const sync_pb::TypedUrlSpecifics& new_value);
|
| void PutExtensionSpecificsAndMarkForSyncing(
|
| const sync_pb::ExtensionSpecifics& new_value);
|
| - void PutSessionSpecificsAndMarkForSyncing(
|
| - const sync_pb::SessionSpecifics& new_value);
|
| void PutSpecificsAndMarkForSyncing(
|
| const sync_pb::EntitySpecifics& specifics);
|
|
|
|
|