Home
last modified time | relevance | path

Searched refs:policy_error (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/chrome/browser/extensions/
Dextension_install_checker_unittest.cc230 EXPECT_TRUE(checker.policy_error().empty()); in ExpectPolicyPass()
236 EXPECT_FALSE(checker.policy_error().empty()); in ExpectPolicyError()
237 EXPECT_EQ(std::string(expected_error), checker.policy_error()); in ExpectPolicyError()
Dextension_install_checker.h79 const std::string& policy_error() const { return policy_error_; } in policy_error() function
Dunpacked_installer.cc202 if (!install_checker_.policy_error().empty()) { in OnInstallChecksComplete()
203 ReportExtensionLoadError(install_checker_.policy_error()); in OnInstallChecksComplete()
Dcrx_installer.cc552 if (!install_checker_.policy_error().empty()) { in OnInstallChecksComplete()
559 CrxInstallerError(base::UTF8ToUTF16(install_checker_.policy_error()))); in OnInstallChecksComplete()
/external/chromium_org/chrome/browser/apps/
Dephemeral_app_launcher.cc78 base::string16 policy_error; in CheckCommonLaunchCriteria() local
79 if (!management_policy->UserMayLoad(extension, &policy_error)) { in CheckCommonLaunchCriteria()
81 *error = base::UTF16ToUTF8(policy_error); in CheckCommonLaunchCriteria()