Searched defs:allowed (Results 1 - 25 of 131) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/platform/
H A DPermissionCallbacks.cpp37 PassOwnPtr<PermissionCallbacks> PermissionCallbacks::create(const Closure& allowed, const Closure& denied) argument
39 return adoptPtr(new PermissionCallbacks(allowed, denied));
42 PermissionCallbacks::PermissionCallbacks(const Closure& allowed, const Closure& denied) argument
43 : m_allowed(allowed)
/external/chromium_org/chrome/browser/mac/
H A Dsecurity_wrappers.cc14 ScopedSecKeychainSetUserInteractionAllowed(Boolean allowed) { argument
21 status = SecKeychainSetUserInteractionAllowed(allowed);
/external/chromium_org/chrome/browser/ui/webui/
H A Ddownloads_ui_browsertest.cc21 void DownloadsUIBrowserTest::SetDeleteAllowed(bool allowed) { argument
23 SetBoolean(prefs::kAllowDeletingBrowserHistory, allowed);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dprofile-handler.h140 bool allowed; /* Profiling is allowed */ member in struct:ProfileHandlerState
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dprofile-handler.h140 bool allowed; /* Profiling is allowed */ member in struct:ProfileHandlerState
/external/chromium_org/chrome/browser/media/
H A Dmidi_permission_context.cc21 bool allowed) {
26 if (allowed)
19 UpdateTabContext(const PermissionRequestID& id, const GURL& requesting_frame, bool allowed) argument
/external/chromium_org/chrome/installer/util/
H A Dlegacy_firewall_manager_win_unittest.cc56 bool allowed = false; local
57 EXPECT_TRUE(manager_.GetAllowIncomingConnection(&allowed));
58 EXPECT_TRUE(allowed);
67 bool allowed = true; local
68 EXPECT_TRUE(manager_.GetAllowIncomingConnection(&allowed));
69 EXPECT_FALSE(allowed);
/external/chromium_org/remoting/host/
H A Dusage_stats_consent_mac.cc17 bool GetUsageStatsConsent(bool* allowed, bool* set_by_policy) { argument
19 *allowed = false;
30 return host_config.GetBoolean(kUsageStatsConsentConfigPath, allowed);
37 bool allowed; local
39 return GetUsageStatsConsent(&allowed, &set_by_policy) && allowed;
42 bool SetUsageStatsConsent(bool allowed) { argument
H A Dusage_stats_consent_win.cc44 bool GetUsageStatsConsent(bool* allowed, bool* set_by_policy) { argument
54 *allowed = value != 0;
58 *allowed = value != 0;
68 bool allowed; local
70 return GetUsageStatsConsent(&allowed, &set_by_policy) && allowed;
73 bool SetUsageStatsConsent(bool allowed) { argument
74 DWORD value = allowed;
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIClientMock.cpp47 void MIDIClientMock::setSysexPermission(bool allowed) argument
49 m_allowed = allowed;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebGeolocationPermissionRequest.cpp52 void WebGeolocationPermissionRequest::setIsAllowed(bool allowed) argument
54 m_private->setIsAllowed(allowed);
H A DWebMIDIClientMock.cpp50 void WebMIDIClientMock::setSysexPermission(bool allowed) argument
52 m_clientMock->setSysexPermission(allowed);
H A DWebMIDIPermissionRequest.cpp55 void WebMIDIPermissionRequest::setIsAllowed(bool allowed) argument
57 m_initializer->resolveSysexPermission(allowed);
/external/chromium_org/android_webview/native/permission/
H A Dsimple_permission_request.cc24 void SimplePermissionRequest::NotifyRequestResult(bool allowed) { argument
25 callback_.Run(allowed);
H A Dmedia_access_permission_request.cc48 void MediaAccessPermissionRequest::NotifyRequestResult(bool allowed) { argument
51 if (!allowed) {
/external/chromium_org/base/threading/
H A Dthread_restrictions.cc29 bool ThreadRestrictions::SetIOAllowed(bool allowed) { argument
31 g_io_disallowed.Get().Set(!allowed);
40 "disallows IO! If this thread really should be allowed to "
48 bool ThreadRestrictions::SetSingletonAllowed(bool allowed) { argument
50 g_singleton_disallowed.Get().Set(!allowed);
57 LOG(FATAL) << "LazyInstance/Singleton is not allowed to be used on this "
72 LOG(FATAL) << "Waiting is not allowed to be used on this thread to prevent"
77 bool ThreadRestrictions::SetWaitAllowed(bool allowed) { argument
79 g_wait_disallowed.Get().Set(!allowed);
/external/chromium_org/chrome/browser/content_settings/
H A Dpermission_context_base.h83 bool allowed);
90 bool allowed);
96 bool allowed) {}
106 bool allowed);
94 UpdateTabContext(const PermissionRequestID& id, const GURL& requesting_origin, bool allowed) argument
H A Dpermission_infobar_delegate.cc54 bool allowed) {
60 update_content_setting, allowed);
53 SetPermission(bool update_content_setting, bool allowed) argument
H A Dcontent_settings_usages_state.cc29 const GURL& requesting_origin, bool allowed) {
31 allowed ? CONTENT_SETTING_ALLOW : CONTENT_SETTING_BLOCK;
28 OnPermissionSet( const GURL& requesting_origin, bool allowed) argument
/external/chromium_org/chrome/browser/web_resource/
H A Dresource_request_allowed_notifier_test_util.cc22 void TestRequestAllowedNotifier::SetRequestsAllowedOverride(bool allowed) { argument
24 requests_allowed_ = allowed;
28 // Force the allowed state and requested state to true. This forces
/external/chromium_org/extensions/browser/
H A Durl_request_util.cc25 bool* allowed) {
37 *allowed = true;
42 // allowed. The navigation logic in CrossSiteResourceHandler will properly
45 *allowed = true;
50 *allowed = false;
58 *allowed = true;
74 *allowed = false;
84 *allowed = true;
88 // Couldn't determine if the resource is allowed or not.
21 AllowCrossRendererResourceLoad(net::URLRequest* request, bool is_incognito, const Extension* extension, InfoMap* extension_info_map, bool* allowed) argument
/external/chromium_org/jingle/glue/
H A Dthread_wrapper.h52 void set_send_allowed(bool allowed) { send_allowed_ = allowed; } argument
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/testing/
H A DInternalsGeolocation.cpp74 void InternalsGeolocation::setGeolocationPermission(Internals&, Document* document, bool allowed) argument
80 client->setPermission(allowed);
/external/libsepol/include/sepol/policydb/
H A Dflask_types.h55 sepol_access_vector_t allowed; member in struct:sepol_av_decision
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/permission/
H A DAwPermissionRequest.java88 private native void nativeOnAccept(long nativeAwPermissionRequest, boolean allowed); argument

Completed in 2840 milliseconds

123456