HomeSort by relevance Sort by last modified time
    Searched refs:ENFORCE (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/extensions/browser/
content_verifier_delegate.h 43 // enforce them if they are present.
46 // If content hashes are missing, try to fetch them, but do not enforce.
49 // If hashes are present, enforce them. If they are missing, try to fetch
51 ENFORCE,
  /external/chromium_org/chrome/browser/extensions/
install_verifier.cc 39 NONE = 0, // Do not request install signatures, and do not enforce them.
40 BOOTSTRAP, // Request install signatures, but do not enforce them.
41 ENFORCE, // Request install signatures, and enforce them.
42 ENFORCE_STRICT, // Same as ENFORCE, but hard fail if we can't fetch
71 else if (group == "Enforce")
72 return ENFORCE;
87 return ENFORCE;
97 return ENFORCE;
112 return GetStatus() >= ENFORCE;
    [all...]
extension_system_impl.cc 228 if (mode >= ContentVerifierDelegate::ENFORCE) {
249 else if (group == "Enforce")
250 experiment_value = ContentVerifierDelegate::ENFORCE;
275 cmdline_value = ContentVerifierDelegate::ENFORCE;
280 // If no value was provided (or the wrong one), just default to enforce.
281 cmdline_value = ContentVerifierDelegate::ENFORCE;
295 // disabled if content verification was in ENFORCE mode.

Completed in 524 milliseconds