Searched refs:consent (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/remoting/tools/
H A Dnative_messaging_host_test.py80 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/
H A Ddaemon_controller_delegate_win.cc205 bool consent,
209 base::Unretained(this), base::Passed(&config), consent, done));
296 DaemonController::UsageStatsConsent consent; local
297 consent.supported = true;
298 consent.allowed = false;
299 consent.set_by_policy = false;
304 // The host is not installed yet. Assume that the user didn't consent to
306 return consent;
311 return consent;
314 // Get the recorded user's consent
203 SetConfigAndStart( scoped_ptr<base::DictionaryValue> config, bool consent, const DaemonController::CompletionCallback& done) argument
406 StartHostWithConfig( scoped_ptr<base::DictionaryValue> config, bool consent, const DaemonController::CompletionCallback& done, HRESULT hr) argument
[all...]
H A Ddaemon_controller.cc62 bool consent,
70 consent, wrapped_done);
151 bool consent,
155 delegate_->SetConfigAndStart(config.Pass(), consent, done);
191 DaemonController::UsageStatsConsent consent = local
193 caller_task_runner_->PostTask(FROM_HERE, base::Bind(done, consent));
222 const UsageStatsConsent& consent) {
225 done.Run(consent);
60 SetConfigAndStart( scoped_ptr<base::DictionaryValue> config, bool consent, const CompletionCallback& done) argument
149 DoSetConfigAndStart( scoped_ptr<base::DictionaryValue> config, bool consent, const CompletionCallback& done) argument
220 InvokeConsentCallbackAndScheduleNext( const GetUsageStatsConsentCallback& done, const UsageStatsConsent& consent) argument
H A Ddaemon_controller_delegate_win.h32 bool consent,
61 bool consent,
H A Ddaemon_controller.h133 bool consent,
157 // Get the user's consent to crash reporting.
191 bool consent,
218 // Get the user's consent to crash reporting.
229 bool consent,
248 const UsageStatsConsent& consent);
H A Ddaemon_controller_delegate_linux.h25 bool consent,
H A Ddaemon_controller_delegate_linux.cc208 bool consent,
320 DaemonController::UsageStatsConsent consent; local
321 consent.supported = false;
322 consent.allowed = false;
323 consent.set_by_policy = false;
324 return consent;
206 SetConfigAndStart( scoped_ptr<base::DictionaryValue> config, bool consent, const DaemonController::CompletionCallback& done) argument
H A Ddaemon_controller_delegate_mac.h26 bool consent,
H A Dme2me_native_messaging_host_unittest.cc147 bool consent,
180 bool consent,
184 if (consent && config && config->HasKey("start")) {
217 DaemonController::UsageStatsConsent consent; local
218 consent.supported = true;
219 consent.allowed = true;
220 consent.set_by_policy = true;
221 return consent;
492 message.SetBoolean("consent", true);
597 message.SetBoolean("consent", tru
178 SetConfigAndStart( scoped_ptr<base::DictionaryValue> config, bool consent, const DaemonController::CompletionCallback& done) argument
[all...]
H A Dme2me_native_messaging_host.cc328 bool consent; local
329 if (!message->GetBoolean("consent", &consent)) {
330 LOG(ERROR) << "'consent' not found.";
343 config_dict.Pass(), consent,
451 const DaemonController::UsageStatsConsent& consent) {
454 response->SetBoolean("supported", consent.supported);
455 response->SetBoolean("allowed", consent.allowed);
456 response->SetBoolean("setByPolicy", consent.set_by_policy);
449 SendUsageStatsConsentResponse( scoped_ptr<base::DictionaryValue> response, const DaemonController::UsageStatsConsent& consent) argument
H A Dme2me_native_messaging_host.h115 const DaemonController::UsageStatsConsent& consent);
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Decho_private_api.h85 // 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);
H A Decho_private_api.cc274 void EchoPrivateGetUserConsentFunction::Finalize(bool consent) { argument
276 CHECK(redeem_offers_allowed_ || !consent);
277 results_ = echo_api::GetUserConsent::Results::Create(consent);
/external/chromium_org/remoting/webapp/
H A Dhost_daemon_facade.js406 * Get the user's consent to crash reporting. The consent flags are passed to
423 * @param {boolean} consent Consent to report crash dumps.
430 function(config, consent, onDone, onError) {
434 consent: consent
H A Dhost_setup_dialog.js20 this.consent = false;
144 this.usageStats_ = document.getElementById('usagestats-consent');
146 document.getElementById('usagestats-consent-checkbox');
200 console.error('Error getting consent status: ' + error);
206 // Prevent user from ticking the box until the current consent status is
414 this.hostController_.start(this.flow_.pin, this.flow_.consent, onHostStarted,
525 this.flow_.consent = !this.usageStats_.hidden &&
H A Dhost_controller.js118 * @param {boolean} consent The user's consent to crash dump reporting.
124 remoting.HostController.prototype.start = function(hostPin, consent, onDone,
196 hostConfig, consent, onStarted.bind(null, hostName, publicKey),

Completed in 1489 milliseconds