OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 /** | 5 /** |
6 * @fileoverview | 6 * @fileoverview |
7 * Wrapper class for Chrome's identity API. | 7 * Wrapper class for Chrome's identity API. |
8 */ | 8 */ |
9 /** @suppress {duplicate} */ | 9 /** @suppress {duplicate} */ |
10 var remoting = remoting || {}; | 10 var remoting = remoting || {}; |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 | 238 |
239 /** | 239 /** |
240 * @param {Array<string>=} opt_scopes | 240 * @param {Array<string>=} opt_scopes |
241 * @return {string} | 241 * @return {string} |
242 */ | 242 */ |
243 function getScopesKey(opt_scopes) { | 243 function getScopesKey(opt_scopes) { |
244 return opt_scopes ? JSON.stringify(opt_scopes) : ''; | 244 return opt_scopes ? JSON.stringify(opt_scopes) : ''; |
245 } | 245 } |
246 | 246 |
247 })(); | 247 })(); |
OLD | NEW |