diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-10 01:00:54 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-10 01:00:54 +0000 |
commit | 71229fa8616c36c326dab127564922b14e443fa9 (patch) | |
tree | 957775bd807925f58c05ae54be374489a10b6900 /chrome/browser/sync/protocol | |
parent | 6736d2d93e021d9889d7d534f4e8865cf81cb882 (diff) | |
download | chromium_src-71229fa8616c36c326dab127564922b14e443fa9.zip chromium_src-71229fa8616c36c326dab127564922b14e443fa9.tar.gz chromium_src-71229fa8616c36c326dab127564922b14e443fa9.tar.bz2 |
[Sync] Replace all instances of ModelTypeSet with ModelEnumSet
Also change some functions to return ModelEnumSets directly instead of
taking a pointer value.
BUG=79970
TEST=
Review URL: http://codereview.chromium.org/8851006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113906 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/protocol')
-rw-r--r-- | chrome/browser/sync/protocol/sync_protocol_error.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/sync/protocol/sync_protocol_error.h b/chrome/browser/sync/protocol/sync_protocol_error.h index 0729989..9121ff0 100644 --- a/chrome/browser/sync/protocol/sync_protocol_error.h +++ b/chrome/browser/sync/protocol/sync_protocol_error.h @@ -68,7 +68,7 @@ struct SyncProtocolError { std::string error_description; std::string url; ClientAction action; - syncable::ModelTypeSet error_data_types; + syncable::ModelEnumSet error_data_types; SyncProtocolError(); ~SyncProtocolError(); DictionaryValue* ToValue() const; |