Commit 6204f208 authored by dcheng@chromium.org's avatar dcheng@chromium.org

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
parent ef12ed3c
......@@ -335,7 +335,7 @@ bool SyncTest::SetupSync() {
// This value must be updated whenever new permanent items are added (although
// this should handle new datatype-specific top level folders).
number_of_default_sync_items_ = GetClient(0)->GetNumEntries() -
GetClient(0)->GetNumDatatypes() - 7;
GetClient(0)->GetNumDatatypes() - 6;
DVLOG(1) << "Setting " << number_of_default_sync_items_ << " as default "
<< " number of entries.";
......
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment