Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(278)

Side by Side Diff: chrome/browser/resources/google_now/utility_test_util.js

Issue 51333004: Using a private API to determine if there is an account for the profile (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/google_now/utility.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Mocks for globals needed for loading utility.js. 5 // Mocks for globals needed for loading utility.js.
6 6
7 var localStorage = {}; 7 var localStorage = {};
8 8
9 chrome['alarms'] = { 9 chrome['alarms'] = {
10 get: emptyMock 10 get: emptyMock
11 }; 11 };
12 chrome['identity'] = { 12 chrome['identity'] = {
13 getAuthToken: emptyMock, 13 getAuthToken: emptyMock,
14 removeCachedAuthToken: emptyMock 14 removeCachedAuthToken: emptyMock
15 }; 15 };
16 chrome['webstorePrivate'] = {
17 getBrowserLogin: emptyMock
18 };
16 19
17 mockChromeEvent(chrome, 'alarms.onAlarm'); 20 mockChromeEvent(chrome, 'alarms.onAlarm');
18 mockChromeEvent(chrome, 'identity.onSignInChanged'); 21 mockChromeEvent(chrome, 'identity.onSignInChanged');
19 mockChromeEvent(chrome, 'runtime.onSuspend'); 22 mockChromeEvent(chrome, 'runtime.onSuspend');
OLDNEW
« no previous file with comments | « chrome/browser/resources/google_now/utility.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698