OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:consent
(Results
1 - 16
of
16
) sorted by null
/external/chromium_org/remoting/tools/
native_messaging_host_test.py
80
consent
= raw_input('Report usage stats [y/n]? ')
81
if
consent
.lower() == 'y':
82
consent
= True
83
elif
consent
.lower() == 'n':
84
consent
= False
90
'
consent
':
consent
,
124
('Get usage stats
consent
', BuildGetUsageStatsConsent),
/external/chromium_org/chrome/browser/chromeos/extensions/
echo_private_api.h
63
// either asks user's
consent
to verify the device's eligibility for the offer,
65
// It returns whether the user
consent
was given.
100
void Finalize(bool
consent
);
echo_private_api.cc
242
void EchoPrivateGetUserConsentFunction::Finalize(bool
consent
) {
243
//
Consent
should not be true if offers redeeming is disabled.
244
CHECK(redeem_offers_allowed_ || !
consent
);
245
results_ = echo_api::GetUserConsent::Results::Create(
consent
);
/external/chromium_org/remoting/host/setup/
daemon_controller.h
115
bool
consent
,
142
// Get the user's
consent
to crash reporting.
daemon_controller_win.cc
72
bool
consent
,
97
bool
consent
,
118
bool
consent
,
121
bool
consent
,
211
bool
consent
,
216
base::Unretained(this), base::Passed(&config),
consent
, done));
344
bool
consent
,
350
DoSetConfigAndStart(config.Pass(),
consent
, done);
478
bool
consent
,
485
DoSetConfigAndStart(config.Pass(),
consent
, done)
[
all
...]
native_messaging_host.cc
289
bool
consent
;
local
290
if (!message.GetBoolean("
consent
", &
consent
)) {
291
LOG(ERROR) << "'
consent
' not found.";
301
config_dict.Pass(),
consent
,
native_messaging_host_unittest.cc
137
bool
consent
,
173
scoped_ptr<base::DictionaryValue> config, bool
consent
,
178
if (
consent
&& config && config->HasKey("start")) {
399
message.SetBoolean("
consent
", true);
513
message.SetBoolean("
consent
", true);
517
// Verify rejection if startDaemon request has no "
consent
" parameter.
daemon_controller_linux.cc
64
bool
consent
,
183
bool /*
consent
*/,
/external/chromium_org/remoting/webapp/
host_setup_dialog.js
20
this.
consent
= false;
157
this.usageStats_ = document.getElementById('usagestats-
consent
');
159
document.getElementById('usagestats-
consent
-checkbox');
213
console.error('Error getting
consent
status: ' + error);
219
// Prevent user from ticking the box until the current
consent
status is
393
this.hostController_.start(this.flow_.pin, this.flow_.
consent
, onHostStarted,
504
this.flow_.
consent
= !this.usageStats_.hidden &&
host_native_messaging.js
463
* Get the user's
consent
to crash reporting. The
consent
flags are passed to
480
* @param {boolean}
consent
Consent
to report crash dumps.
488
function(config,
consent
, onDone, onError) {
492
consent
:
consent
host_plugin_proto.js
71
* called with the
consent
.
80
config,
consent
, callback) {};
identity.js
25
* user
consent
is required. The callback is passed a continuation function
125
// now. The
consent
callback is responsible for continuing the auth flow.
host_controller.js
94
* @param {boolean}
consent
The user's
consent
to crash dump reporting.
100
remoting.HostController.prototype.start = function(hostPin,
consent
, onDone,
161
that.hostDispatcher_.startDaemon(hostConfig,
consent
,
host_dispatcher.js
295
* @param {boolean}
consent
301
function(config,
consent
, onDone, onError) {
305
this.startDaemon.bind(this, config,
consent
, onDone, onError));
308
this.nativeMessagingHost_.startDaemon(config,
consent
, onDone, onError);
312
this.npapiHost_.startDaemon(JSON.stringify(config),
consent
, onDone);
third_party_host_permissions.js
7
* Obtains additional host permissions, showing a
consent
dialog if needed.
remoting.js
18
* Show the authorization
consent
UI and register a one-shot event handler to
Completed in 1017 milliseconds