Commit e753e7c4 authored by earthdok@chromium.org's avatar earthdok@chromium.org

Fix uninit in WebNotificationTrayTest.ManuallyCloseMessageCenter.

BUG=383491
R=mukai@chromium.org
NOTRY=true

Review URL: https://codereview.chromium.org/332533002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276527 0039d316-1c4b-4281-b951-d872f2087c98
parent bb0c4901
...@@ -209,7 +209,7 @@ void MessageCenterSettingsController::GetNotifierList( ...@@ -209,7 +209,7 @@ void MessageCenterSettingsController::GetNotifierList(
DesktopNotificationService* notification_service = DesktopNotificationService* notification_service =
DesktopNotificationServiceFactory::GetForProfile(profile); DesktopNotificationServiceFactory::GetForProfile(profile);
UErrorCode error; UErrorCode error = U_ZERO_ERROR;
scoped_ptr<icu::Collator> collator(icu::Collator::createInstance(error)); scoped_ptr<icu::Collator> collator(icu::Collator::createInstance(error));
scoped_ptr<NotifierComparator> comparator; scoped_ptr<NotifierComparator> comparator;
if (!U_FAILURE(error)) if (!U_FAILURE(error))
......
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