OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:auth_params
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/chrome/browser/chromeos/app_mode/
startup_app_launcher.h
100
static void LoadOAuthFileOnBlockingPool(KioskOAuthParams*
auth_params
);
101
void OnOAuthFileLoaded(KioskOAuthParams*
auth_params
);
startup_app_launcher.cc
111
KioskOAuthParams*
auth_params
= new KioskOAuthParams();
local
115
auth_params
),
118
base::Owned(
auth_params
)));
123
KioskOAuthParams*
auth_params
) {
140
dict->GetString(kOAuthRefreshToken, &
auth_params
->refresh_token);
141
dict->GetString(kOAuthClientId, &
auth_params
->client_id);
142
dict->GetString(kOAuthClientSecret, &
auth_params
->client_secret);
145
void StartupAppLauncher::OnOAuthFileLoaded(KioskOAuthParams*
auth_params
) {
146
auth_params_ = *
auth_params
;
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauth.js
33
this.
auth_params
= {};
34
if (opt_args && opt_args['
auth_params
']) {
35
for (key in opt_args['
auth_params
']) {
36
if (opt_args['
auth_params
'].hasOwnProperty(key)) {
37
this.
auth_params
[key] = opt_args['
auth_params
'][key];
60
* "
auth_params
" {Object} Additional parameters to pass to the
237
* "
auth_params
" {Object} Additional parameters to pass to the
252
'
auth_params
' : oauth_config['
auth_params
']
[
all
...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauth.js
33
this.
auth_params
= {};
34
if (opt_args && opt_args['
auth_params
']) {
35
for (key in opt_args['
auth_params
']) {
36
if (opt_args['
auth_params
'].hasOwnProperty(key)) {
37
this.
auth_params
[key] = opt_args['
auth_params
'][key];
60
* "
auth_params
" {Object} Additional parameters to pass to the
237
* "
auth_params
" {Object} Additional parameters to pass to the
252
'
auth_params
' : oauth_config['
auth_params
']
[
all
...]
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py
258
auth_params
= {}
262
auth_params
[key.lower()] = UNQUOTE_PAIRS.sub(r'\1', value) # '\\'.join([x.replace('\\', '') for x in value.split('\\\\')])
264
retval[auth_scheme.lower()] =
auth_params
[
all
...]
Completed in 107 milliseconds