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

Side by Side Diff: remoting/webapp/plugin_settings.js

Issue 340993002: Revert of Remove NPAPI plugin from chromoting webapp. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months 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 | « remoting/webapp/js_proto/remoting_proto.js ('k') | remoting/webapp/remoting.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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';
22 /** @type {string} API client ID.*/ 24 /** @type {string} API client ID.*/
23 remoting.Settings.prototype.OAUTH2_CLIENT_ID = 'API_CLIENT_ID'; 25 remoting.Settings.prototype.OAUTH2_CLIENT_ID = 'API_CLIENT_ID';
24 /** @type {string} API client secret.*/ 26 /** @type {string} API client secret.*/
25 remoting.Settings.prototype.OAUTH2_CLIENT_SECRET = 'API_CLIENT_SECRET'; 27 remoting.Settings.prototype.OAUTH2_CLIENT_SECRET = 'API_CLIENT_SECRET';
26 28
27 /** @type {string} Base URL for OAuth2 authentication. */ 29 /** @type {string} Base URL for OAuth2 authentication. */
28 remoting.Settings.prototype.OAUTH2_BASE_URL = 'OAUTH2_BASE_URL'; 30 remoting.Settings.prototype.OAUTH2_BASE_URL = 'OAUTH2_BASE_URL';
29 /** @type {string} Base URL for the OAuth2 API. */ 31 /** @type {string} Base URL for the OAuth2 API. */
30 remoting.Settings.prototype.OAUTH2_API_BASE_URL = 'OAUTH2_API_BASE_URL'; 32 remoting.Settings.prototype.OAUTH2_API_BASE_URL = 'OAUTH2_API_BASE_URL';
31 /** @type {string} Base URL for the Remoting Directory REST API. */ 33 /** @type {string} Base URL for the Remoting Directory REST API. */
(...skipping 16 matching lines...) Expand all
48 // Third party authentication settings. 50 // Third party authentication settings.
49 /** @type {string} The third party auth redirect URI. */ 51 /** @type {string} The third party auth redirect URI. */
50 remoting.Settings.prototype.THIRD_PARTY_AUTH_REDIRECT_URI = 52 remoting.Settings.prototype.THIRD_PARTY_AUTH_REDIRECT_URI =
51 'THIRD_PARTY_AUTH_REDIRECT_URL'; 53 'THIRD_PARTY_AUTH_REDIRECT_URL';
52 54
53 // Whether to use MediaSource API for video rendering. 55 // Whether to use MediaSource API for video rendering.
54 remoting.Settings.prototype.USE_MEDIA_SOURCE_RENDERING = false; 56 remoting.Settings.prototype.USE_MEDIA_SOURCE_RENDERING = false;
55 57
56 // 'native', 'nacl' or 'pnacl'. 58 // 'native', 'nacl' or 'pnacl'.
57 remoting.Settings.prototype.CLIENT_PLUGIN_TYPE = 'CLIENT_PLUGIN_TYPE'; 59 remoting.Settings.prototype.CLIENT_PLUGIN_TYPE = 'CLIENT_PLUGIN_TYPE';
OLDNEW
« no previous file with comments | « remoting/webapp/js_proto/remoting_proto.js ('k') | remoting/webapp/remoting.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698