Home
last modified time | relevance | path

Searched refs:set_by_policy (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/remoting/host/
Dusage_stats_consent_mac.cc17 bool GetUsageStatsConsent(bool* allowed, bool* set_by_policy) { in GetUsageStatsConsent() argument
18 *set_by_policy = false; in GetUsageStatsConsent()
38 bool set_by_policy; in IsUsageStatsAllowed() local
39 return GetUsageStatsConsent(&allowed, &set_by_policy) && allowed; in IsUsageStatsAllowed()
Dusage_stats_consent_win.cc44 bool GetUsageStatsConsent(bool* allowed, bool* set_by_policy) { in GetUsageStatsConsent() argument
47 *set_by_policy = false; in GetUsageStatsConsent()
69 bool set_by_policy; in IsUsageStatsAllowed() local
70 return GetUsageStatsConsent(&allowed, &set_by_policy) && allowed; in IsUsageStatsAllowed()
Dusage_stats_consent.h12 bool GetUsageStatsConsent(bool* allowed, bool* set_by_policy);
/external/chromium_org/remoting/host/setup/
Ddaemon_controller_delegate_win.cc290 consent.set_by_policy = false; in GetUsageStatsConsent()
307 BOOL set_by_policy; in GetUsageStatsConsent() local
308 hr = control2_->GetUsageStatsConsent(&allowed, &set_by_policy); in GetUsageStatsConsent()
316 consent.set_by_policy = !!set_by_policy; in GetUsageStatsConsent()
Dme2me_native_messaging_host_unittest.cc85 bool supported, allowed, set_by_policy; in VerifyGetUsageStatsConsentResponse() local
88 EXPECT_TRUE(response->GetBoolean("setByPolicy", &set_by_policy)); in VerifyGetUsageStatsConsentResponse()
91 EXPECT_TRUE(set_by_policy); in VerifyGetUsageStatsConsentResponse()
213 consent.set_by_policy = true; in GetUsageStatsConsent()
Ddaemon_controller.h97 bool set_by_policy; member
Ddaemon_controller_delegate_mac.mm137 // set_by_policy is not yet supported.
138 consent.set_by_policy = false;
Ddaemon_controller_delegate_linux.cc287 consent.set_by_policy = false; in GetUsageStatsConsent()
Dme2me_native_messaging_host.cc424 response->SetBoolean("setByPolicy", consent.set_by_policy); in SendUsageStatsConsentResponse()
/external/chromium_org/remoting/host/win/
Delevated_controller.h52 STDMETHOD(GetUsageStatsConsent)(BOOL* allowed, BOOL* set_by_policy);
Delevated_controller.cc487 BOOL* set_by_policy) { in GetUsageStatsConsent() argument
492 *set_by_policy = local_set_by_policy; in GetUsageStatsConsent()
Dchromoting_lib_idl.templ60 [out] BOOL* set_by_policy);
/external/chromium_org/remoting/webapp/
Dhost_setup_dialog.js205 function onGetConsent(supported, allowed, set_by_policy) { argument
208 that.usageStatsCheckbox_.disabled = set_by_policy;
/external/chromium_org/remoting/host/plugin/
Dhost_script_object.cc1071 BOOLEAN_TO_NPVARIANT(consent.set_by_policy, params[2]); in InvokeGetUsageStatsConsentCallback()