HomeSort by relevance Sort by last modified time
    Searched refs:consent (Results 1 - 23 of 23) 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/remoting/host/setup/
daemon_controller_delegate_win.cc 198 bool consent,
203 OnInstallationComplete(config.Pass(), consent, done, S_OK);
216 consent,
287 DaemonController::UsageStatsConsent consent; local
288 consent.supported = true;
289 consent.allowed = false;
290 consent.set_by_policy = false;
295 // The host is not installed yet. Assume that the user didn't consent to
297 return consent;
302 return consent;
    [all...]
daemon_controller.h 129 bool consent,
153 // Get the user's consent to crash reporting.
183 bool consent,
210 // Get the user's consent to crash reporting.
220 bool consent,
239 const UsageStatsConsent& consent);
daemon_controller_delegate_linux.h 23 bool consent,
daemon_controller.cc 52 bool consent,
60 consent, wrapped_done);
135 bool consent,
139 delegate_->SetConfigAndStart(config.Pass(), consent, done);
175 DaemonController::UsageStatsConsent consent = local
177 caller_task_runner_->PostTask(FROM_HERE, base::Bind(done, consent));
206 const UsageStatsConsent& consent) {
209 done.Run(consent);
daemon_controller_delegate_win.h 29 bool consent,
55 bool consent,
daemon_controller_delegate_linux.cc 172 bool consent,
284 DaemonController::UsageStatsConsent consent; local
285 consent.supported = false;
286 consent.allowed = false;
287 consent.set_by_policy = false;
288 return consent;
daemon_controller_delegate_mac.h 24 bool consent,
me2me_native_messaging_host.cc 294 bool consent; local
295 if (!message.GetBoolean("consent", &consent)) {
296 LOG(ERROR) << "'consent' not found.";
306 config_dict.Pass(), consent,
419 const DaemonController::UsageStatsConsent& consent) {
422 response->SetBoolean("supported", consent.supported);
423 response->SetBoolean("allowed", consent.allowed);
424 response->SetBoolean("setByPolicy", consent.set_by_policy);
me2me_native_messaging_host_unittest.cc 145 bool consent,
173 bool consent,
177 if (consent && config && config->HasKey("start")) {
210 DaemonController::UsageStatsConsent consent; local
211 consent.supported = true;
212 consent.allowed = true;
213 consent.set_by_policy = true;
214 return consent;
483 message.SetBoolean("consent", true);
588 message.SetBoolean("consent", true)
    [all...]
me2me_native_messaging_host.h 107 const DaemonController::UsageStatsConsent& consent);
  /external/chromium_org/chrome/browser/chromeos/extensions/
echo_private_api.h 85 // either asks user's consent to verify the device's eligibility for the offer,
87 // It returns whether the user consent was given.
121 void Finalize(bool consent);
echo_private_api.cc 274 void EchoPrivateGetUserConsentFunction::Finalize(bool consent) {
275 // Consent should not be true if offers redeeming is disabled.
276 CHECK(redeem_offers_allowed_ || !consent);
277 results_ = echo_api::GetUserConsent::Results::Create(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_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 95 * @param {boolean} consent The user's consent to crash dump reporting.
101 remoting.HostController.prototype.start = function(hostPin, consent, onDone,
167 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);
host_native_messaging.js 486 * Get the user's consent to crash reporting. The consent flags are passed to
503 * @param {boolean} consent Consent to report crash dumps.
511 function(config, consent, onDone, onError) {
515 consent: consent
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
  /external/chromium_org/remoting/host/plugin/
host_script_object.cc 827 SetException("startDaemon: invalid consent parameter");
    [all...]
host_script_object.h 141 // Retrieves the user's consent to report crash dumps. The first argument
142 // specifies the callback to be called with the recorder consent. Possible
143 // consent codes are defined in remoting/host/breakpad.h.
234 const DaemonController::UsageStatsConsent& consent);

Completed in 199 milliseconds