| Index: trunk/src/chrome/browser/resources/google_now/background_unittest.gtestjs
 | 
| ===================================================================
 | 
| --- trunk/src/chrome/browser/resources/google_now/background_unittest.gtestjs	(revision 252133)
 | 
| +++ trunk/src/chrome/browser/resources/google_now/background_unittest.gtestjs	(working copy)
 | 
| @@ -70,7 +70,6 @@
 | 
|      'instrumented.notifications.getPermissionLevel',
 | 
|      'instrumented.preferencesPrivate.googleGeolocationAccessEnabled.get',
 | 
|      'instrumented.storage.local.get',
 | 
| -    'instrumented.webstorePrivate.getBrowserLogin',
 | 
|      'tasks.add',
 | 
|      'updateCardsAttempts.isRunning',
 | 
|      'updateCardsAttempts.stop'
 | 
| @@ -100,11 +99,14 @@
 | 
|      testExperimentVariationParams,
 | 
|      testNotificationPermissionLevel,
 | 
|      testGoogleNowEnabled) {
 | 
| +  var authenticationManagerIsSignedInSavedArgs = new SaveMockArguments();
 | 
|    fixture.mockApis.expects(once()).
 | 
| -      authenticationManager_isSignedIn().
 | 
| -      will(returnValue(new Promise(function(resolve) {
 | 
| -        resolve(!!testIdentityToken);
 | 
| -      })));
 | 
| +      authenticationManager_isSignedIn(
 | 
| +          authenticationManagerIsSignedInSavedArgs.match(ANYTHING)).
 | 
| +      will(invokeCallback(
 | 
| +          authenticationManagerIsSignedInSavedArgs,
 | 
| +          0,
 | 
| +          testIdentityToken));
 | 
|  
 | 
|    var getVariationParamsSavedArgs = new SaveMockArguments();
 | 
|    fixture.mockApis.expects(once()).
 | 
| @@ -131,13 +133,13 @@
 | 
|            0,
 | 
|            testNotificationPermissionLevel))
 | 
|  
 | 
| -   var storageGetSavedArgs = new SaveMockArguments();
 | 
| -   fixture.mockApis.expects(once()).
 | 
| -       instrumented_storage_local_get(
 | 
| -           storageGetSavedArgs.match(eq('googleNowEnabled')),
 | 
| -           storageGetSavedArgs.match(ANYTHING)).
 | 
| +   var storageGetSavedArgs = new SaveMockArguments();	 
 | 
| +   fixture.mockApis.expects(once()).	 
 | 
| +       instrumented_storage_local_get(	 
 | 
| +           storageGetSavedArgs.match(eq('googleNowEnabled')),	 
 | 
| +           storageGetSavedArgs.match(ANYTHING)).	 
 | 
|         will(invokeCallback(
 | 
| -          storageGetSavedArgs, 1, {googleNowEnabled: testGoogleNowEnabled}));
 | 
| +          storageGetSavedArgs, 1, {googleNowEnabled: testGoogleNowEnabled}));	 
 | 
|  
 | 
|    fixture.mockGlobals.expects(once()).
 | 
|        setBackgroundEnable(ANYTHING);
 | 
| @@ -595,7 +597,7 @@
 | 
|        // Check the output value.
 | 
|        var expectedCombinedCards = {
 | 
|          'EXISTING CARD': [
 | 
| -          1,
 | 
| +          1, 
 | 
|            {
 | 
|              receivedNotification: receivedNotificationNoShowTime,
 | 
|              hideTime: 11000
 | 
| 
 |