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

1 2

  /external/chromium_org/extensions/common/
install_warning.cc 9 void PrintTo(const InstallWarning& warning, ::std::ostream* os) {
10 *os << "InstallWarning(";
12 case InstallWarning::FORMAT_TEXT:
15 case InstallWarning::FORMAT_HTML:
install_warning.h 13 struct InstallWarning {
20 static InstallWarning Text(const std::string& message) {
21 return InstallWarning(FORMAT_TEXT, message);
23 InstallWarning(Format format, const std::string& message)
26 bool operator==(const InstallWarning& other) const {
34 void PrintTo(const InstallWarning&, ::std::ostream* os);
  /external/chromium_org/chrome/common/extensions/api/extension_action/
script_badge_handler.cc 48 InstallWarning(InstallWarning::FORMAT_TEXT,
71 InstallWarning(InstallWarning::FORMAT_TEXT,
77 InstallWarning(InstallWarning::FORMAT_TEXT,
browser_action_handler.h 25 std::vector<InstallWarning>* warnings) const OVERRIDE;
page_action_handler.h 25 std::vector<InstallWarning>* warnings) const OVERRIDE;
script_badge_manifest_unittest.cc 22 std::vector<InstallWarning> StripMissingFlagWarning(
23 const std::vector<InstallWarning>& install_warnings) {
24 std::vector<InstallWarning> result;
101 InstallWarning(InstallWarning::FORMAT_TEXT,
103 InstallWarning(InstallWarning::FORMAT_TEXT,
browser_action_handler.cc 47 std::vector<InstallWarning>* warnings) const {
page_action_handler.cc 78 std::vector<InstallWarning>* warnings) const {
  /external/chromium_org/chrome/common/extensions/
manifest_handler.h 41 std::vector<InstallWarning>* warnings) const;
80 std::vector<InstallWarning>* warnings);
109 std::vector<InstallWarning>* warnings);
manifest.cc 132 std::vector<InstallWarning>* warnings) const {
160 warnings->push_back(InstallWarning(
161 InstallWarning::FORMAT_TEXT, result.message()));
168 warnings->push_back(InstallWarning(
169 InstallWarning::FORMAT_TEXT,
extension_file_util.h 26 struct InstallWarning;
83 std::vector<extensions::InstallWarning>* warnings);
manifest.h 17 struct InstallWarning;
105 std::vector<InstallWarning>* warnings) const;
background_info.h 85 std::vector<InstallWarning>* warnings) const OVERRIDE;
extension.h 293 void AddInstallWarning(const InstallWarning& new_warning);
294 void AddInstallWarnings(const std::vector<InstallWarning>& new_warnings);
295 const std::vector<InstallWarning>& install_warnings() const {
400 std::vector<InstallWarning> install_warnings_;
  /external/chromium_org/chrome/common/extensions/api/i18n/
default_locale_handler.h 34 std::vector<InstallWarning>* warnings) const OVERRIDE;
  /external/chromium_org/chrome/common/extensions/api/plugins/
plugins_handler.h 42 std::vector<InstallWarning>* warnings) const OVERRIDE;
  /external/chromium_org/chrome/common/extensions/api/storage/
storage_schema_manifest_handler.h 35 std::vector<InstallWarning>* warnings) const OVERRIDE;
storage_schema_manifest_handler.cc 76 std::vector<InstallWarning>* warnings) const {
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
content_scripts_handler.h 46 std::vector<InstallWarning>* warnings) const OVERRIDE;
externally_connectable.cc 64 std::vector<InstallWarning> install_warnings;
94 std::vector<InstallWarning>* install_warnings,
122 InstallWarning::Text(ErrorUtils::FormatErrorMessage(
149 install_warnings->push_back(InstallWarning::Text(
182 install_warnings->push_back(InstallWarning::Text(
externally_connectable.h 60 std::vector<InstallWarning>* install_warnings,
icons_handler.h 52 std::vector<InstallWarning>* warnings) const OVERRIDE;
theme_handler.h 51 std::vector<InstallWarning>* warnings) const OVERRIDE;
shared_module_info.h 63 std::vector<InstallWarning>* warnings) const OVERRIDE;
icons_handler.cc 98 std::vector<InstallWarning>* warnings) const {

Completed in 1209 milliseconds

1 2