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 // Contains all the settings that may need massaging by the build script. | 5 // Contains all the settings that may need massaging by the build script. |
6 // Keeping all that centralized here allows us to use symlinks for the other | 6 // Keeping all that centralized here allows us to use symlinks for the other |
7 // files making for a faster compile/run cycle when only modifying HTML/JS. | 7 // files making for a faster compile/run cycle when only modifying HTML/JS. |
8 | 8 |
9 'use strict'; | 9 'use strict'; |
10 | 10 |
11 /** @suppress {duplicate} */ | 11 /** @suppress {duplicate} */ |
12 var remoting = remoting || {}; | 12 var remoting = remoting || {}; |
13 | 13 |
14 /** @type {remoting.Settings} */ | 14 /** @type {remoting.Settings} */ |
15 remoting.settings = null; | 15 remoting.settings = null; |
16 /** @constructor */ | 16 /** @constructor */ |
17 remoting.Settings = function() {}; | 17 remoting.Settings = function() {}; |
18 | 18 |
19 // The settings on this file are automatically substituted by build-webapp.py. | 19 // The settings on this file are automatically substituted by build-webapp.py. |
20 // Do not override them manually, except for running local tests. | 20 // Do not override them manually, except for running local tests. |
21 | 21 |
22 /** @type {string} MIME type for the host plugin.*/ | |
23 remoting.Settings.prototype.PLUGIN_MIMETYPE = 'HOST_PLUGIN_MIMETYPE'; | |
24 /** @type {string} API client ID.*/ | 22 /** @type {string} API client ID.*/ |
25 remoting.Settings.prototype.OAUTH2_CLIENT_ID = 'API_CLIENT_ID'; | 23 remoting.Settings.prototype.OAUTH2_CLIENT_ID = 'API_CLIENT_ID'; |
26 /** @type {string} API client secret.*/ | 24 /** @type {string} API client secret.*/ |
27 remoting.Settings.prototype.OAUTH2_CLIENT_SECRET = 'API_CLIENT_SECRET'; | 25 remoting.Settings.prototype.OAUTH2_CLIENT_SECRET = 'API_CLIENT_SECRET'; |
28 | 26 |
29 /** @type {string} Base URL for OAuth2 authentication. */ | 27 /** @type {string} Base URL for OAuth2 authentication. */ |
30 remoting.Settings.prototype.OAUTH2_BASE_URL = 'OAUTH2_BASE_URL'; | 28 remoting.Settings.prototype.OAUTH2_BASE_URL = 'OAUTH2_BASE_URL'; |
31 /** @type {string} Base URL for the OAuth2 API. */ | 29 /** @type {string} Base URL for the OAuth2 API. */ |
32 remoting.Settings.prototype.OAUTH2_API_BASE_URL = 'OAUTH2_API_BASE_URL'; | 30 remoting.Settings.prototype.OAUTH2_API_BASE_URL = 'OAUTH2_API_BASE_URL'; |
33 /** @type {string} Base URL for the Remoting Directory REST API. */ | 31 /** @type {string} Base URL for the Remoting Directory REST API. */ |
(...skipping 16 matching lines...) Expand all Loading... |
50 // Third party authentication settings. | 48 // Third party authentication settings. |
51 /** @type {string} The third party auth redirect URI. */ | 49 /** @type {string} The third party auth redirect URI. */ |
52 remoting.Settings.prototype.THIRD_PARTY_AUTH_REDIRECT_URI = | 50 remoting.Settings.prototype.THIRD_PARTY_AUTH_REDIRECT_URI = |
53 'THIRD_PARTY_AUTH_REDIRECT_URL'; | 51 'THIRD_PARTY_AUTH_REDIRECT_URL'; |
54 | 52 |
55 // Whether to use MediaSource API for video rendering. | 53 // Whether to use MediaSource API for video rendering. |
56 remoting.Settings.prototype.USE_MEDIA_SOURCE_RENDERING = false; | 54 remoting.Settings.prototype.USE_MEDIA_SOURCE_RENDERING = false; |
57 | 55 |
58 // 'native', 'nacl' or 'pnacl'. | 56 // 'native', 'nacl' or 'pnacl'. |
59 remoting.Settings.prototype.CLIENT_PLUGIN_TYPE = 'CLIENT_PLUGIN_TYPE'; | 57 remoting.Settings.prototype.CLIENT_PLUGIN_TYPE = 'CLIENT_PLUGIN_TYPE'; |
OLD | NEW |