HomeSort by relevance Sort by last modified time
    Searched refs:allowed (Results 1 - 25 of 376) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/remoting/host/
usage_stats_consent.h 12 bool GetUsageStatsConsent(bool* allowed, bool* set_by_policy);
15 // usage statistics. In most cases the returned value matches |allowed| returned
22 bool SetUsageStatsConsent(bool allowed);
usage_stats_consent_mac.cc 17 bool GetUsageStatsConsent(bool* allowed, bool* set_by_policy) {
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) {
usage_stats_consent_win.cc 44 bool GetUsageStatsConsent(bool* allowed, bool* set_by_policy) {
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) {
74 DWORD value = allowed;
  /external/chromium_org/third_party/WebKit/Source/platform/
PermissionCallbacks.cpp 37 PassOwnPtr<PermissionCallbacks> PermissionCallbacks::create(const Closure& allowed, const Closure& denied)
39 return adoptPtr(new PermissionCallbacks(allowed, denied));
42 PermissionCallbacks::PermissionCallbacks(const Closure& allowed, const Closure& denied)
43 : m_allowed(allowed)
PermissionCallbacks.h 18 static PassOwnPtr<PermissionCallbacks> create(const Closure& allowed, const Closure& denied);
25 PermissionCallbacks(const Closure& allowed, const Closure& denied);
  /external/chromium_org/content/shell/renderer/test_runner/
web_permissions.cc 22 bool allowed = enabled_per_settings && images_allowed_; local
26 (allowed ? "true" : "false") + "\n");
28 return allowed;
32 bool allowed = media_allowed_; local
36 (allowed ? "true" : "false") + "\n");
37 return allowed;
42 bool allowed = enabled_per_settings && scripts_allowed_; local
47 (allowed ? "true" : "false") + "\n");
49 return allowed;
94 void WebPermissions::SetDisplayingInsecureContentAllowed(bool allowed) {
    [all...]
  /external/chromium_org/base/threading/
thread_restrictions.cc 29 bool ThreadRestrictions::SetIOAllowed(bool allowed) {
31 g_io_disallowed.Get().Set(!allowed);
40 "disallows IO! If this thread really should be allowed to "
48 bool ThreadRestrictions::SetSingletonAllowed(bool allowed) {
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) {
79 g_wait_disallowed.Get().Set(!allowed);
  /external/chromium_org/android_webview/native/permission/
aw_permission_request_delegate.h 26 // Notify the permission request is allowed or not.
27 virtual void NotifyRequestResult(bool allowed) = 0;
simple_permission_request.cc 24 void SimplePermissionRequest::NotifyRequestResult(bool allowed) {
25 callback_.Run(allowed);
simple_permission_request.h 25 virtual void NotifyRequestResult(bool allowed) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
MixedContentChecker.cpp 68 bool allowed = client()->allowDisplayingInsecureContent(settings && settings->allowDisplayOfInsecureContent(), securityOrigin, url); local
69 logWarning(allowed, url, type);
71 if (allowed)
74 return allowed;
84 bool allowed = client()->allowRunningInsecureContent(allowedPerSettings, securityOrigin, url); local
85 logWarning(allowed, url, type);
87 if (allowed)
90 return allowed;
104 void MixedContentChecker::logWarning(bool allowed, const KURL& target, const MixedContentType type) const
107 message.append((allowed ? "" : "[blocked] "))
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
downloads_ui_browsertest.cc 21 void DownloadsUIBrowserTest::SetDeleteAllowed(bool allowed) {
23 SetBoolean(prefs::kAllowDeletingBrowserHistory, allowed);
downloads_ui_browsertest.h 18 void SetDeleteAllowed(bool allowed);
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIClientMock.cpp 47 void MIDIClientMock::setSysexPermission(bool allowed)
49 m_allowed = allowed;
  /external/chromium_org/third_party/WebKit/Source/web/
WebGeolocationPermissionRequest.cpp 54 void WebGeolocationPermissionRequest::setIsAllowed(bool allowed)
56 m_private->setIsAllowed(allowed);
WebMIDIPermissionRequest.cpp 55 void WebMIDIPermissionRequest::setIsAllowed(bool allowed)
57 m_initializer->setSysexEnabled(allowed);
WebMIDIClientMock.cpp 45 void WebMIDIClientMock::setSysexPermission(bool allowed)
47 m_clientMock->setSysexPermission(allowed);
  /external/chromium_org/chrome/installer/util/
legacy_firewall_manager_win_unittest.cc 56 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/chrome/browser/extensions/
extension_installer.cc 32 bool allowed = ExtensionSystem::Get(profile_)->management_policy() local
34 DCHECK(allowed || !error.empty());
  /external/chromium_org/chrome/browser/web_resource/
resource_request_allowed_notifier_test_util.cc 22 void TestRequestAllowedNotifier::SetRequestsAllowedOverride(bool allowed) {
24 requests_allowed_ = allowed;
28 // Force the allowed state and requested state to true. This forces
40 return requests_allowed_ ? ALLOWED : DISALLOWED_NETWORK_DOWN;
resource_request_allowed_notifier_test_util.h 29 // Makes ResourceRequestsAllowed return |allowed| when it is called.
30 void SetRequestsAllowedOverride(bool allowed);
32 // Notify observers that requests are allowed. This will only work if
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/testing/
InternalsGeolocation.idl 35 void setGeolocationPermission(Document document, boolean allowed);
InternalsGeolocation.h 48 static void setGeolocationPermission(Internals&, Document*, bool allowed);
  /external/chromium_org/chrome/browser/renderer_host/
chrome_render_message_filter.cc 173 bool* allowed) {
174 *allowed =
180 display_name, !*allowed));
187 bool* allowed) {
188 *allowed =
195 !*allowed));
203 bool allowed = local
218 !allowed,
224 allowed);
234 !allowed));
244 bool allowed = local
    [all...]
  /external/chromium_org/base/mac/
scoped_nsexception_enabler.h 43 BASE_EXPORT void SetNSExceptionsAllowed(bool allowed);

Completed in 611 milliseconds

1 2 3 4 5 6 7 8 91011>>