Revert 168224 - Update V8 to version 3.15.4.
[chromium-blink-merge.git] / remoting / webapp / plugin_settings.js
blobd3fde9aabe4ff064f6f8420e2dd03c9fb55600b1
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
3 // found in the LICENSE file.
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
7 // files making for a faster compile/run cycle when only modifying HTML/JS.
9 /** @suppress {duplicate} */
10 var remoting = remoting || {};
12 /**
13 * @type {string} The MIME type of the Host plugin.
15 remoting.PLUGIN_MIMETYPE = 'HOST_PLUGIN_MIMETYPE';
17 /**
18 * @type {string} The OAuth2 redirect URL.
19 * @private
21 remoting.OAuth2.prototype.REDIRECT_URI_ = 'OAUTH2_REDIRECT_URL';
23 // Constants for parameters used in retrieving the OAuth2 credentials.
24 /** @private */
25 remoting.OAuth2.prototype.CLIENT_ID_ = 'API_CLIENT_ID';
26 /** @private */
27 remoting.OAuth2.prototype.CLIENT_SECRET_ = 'API_CLIENT_SECRET';