diff options
author | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-27 01:58:22 +0000 |
---|---|---|
committer | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-27 01:58:22 +0000 |
commit | 6204f2081841e2d32e2b4528175dcb230d8619be (patch) | |
tree | 67bbddef2a0f959b9daff0064ca441c0c5d8ca83 /sync | |
parent | ef12ed3c7958e7fe7da16e346f805f140e11add8 (diff) | |
download | chromium_src-6204f2081841e2d32e2b4528175dcb230d8619be.zip chromium_src-6204f2081841e2d32e2b4528175dcb230d8619be.tar.gz chromium_src-6204f2081841e2d32e2b4528175dcb230d8619be.tar.bz2 |
Fix a typo in RealModelTypeToNotificationType.
BUG=139229
TEST=sync_integration_tests should still pass
Review URL: https://chromiumcodereview.appspot.com/10825047
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148695 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync')
-rw-r--r-- | sync/syncable/model_type.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sync/syncable/model_type.cc b/sync/syncable/model_type.cc index 4c75f91..83e803c 100644 --- a/sync/syncable/model_type.cc +++ b/sync/syncable/model_type.cc @@ -453,7 +453,7 @@ bool RealModelTypeToNotificationType(ModelType model_type, *notification_type = kNigoriNotificationType; return true; case APP_SETTINGS: - *notification_type = kAppNotificationType; + *notification_type = kAppSettingNotificationType; return true; case APPS: *notification_type = kAppNotificationType; |