Searched defs:AutomationInfo (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/chrome/common/extensions/manifest_handlers/
H A Dautomation.h37 struct AutomationInfo : public Extension::ManifestData { struct in namespace:extensions
39 static const AutomationInfo* Get(const Extension* extension);
40 static scoped_ptr<AutomationInfo> FromValue(
45 static scoped_ptr<base::Value> ToValue(const AutomationInfo& info);
46 virtual ~AutomationInfo();
60 AutomationInfo();
61 AutomationInfo(bool desktop, URLPatternSet matches, bool interact);
64 const AutomationInfo& info);
66 DISALLOW_COPY_AND_ASSIGN(AutomationInfo);
H A Dautomation.cc43 scoped_ptr<const AutomationInfo> automation_info)
69 scoped_ptr<const AutomationInfo> automation_info_;
112 automation_info_.reset(AutomationInfo::FromValue(*value,
119 return AutomationInfo::ToValue(*automation_info_).Pass();
134 make_scoped_ptr(new const AutomationInfo(desktop, matches, interact)));
149 make_scoped_ptr(new const AutomationInfo(desktop, matches, interact)));
164 make_scoped_ptr(new const AutomationInfo(desktop, matches, interact)));
177 scoped_ptr<AutomationInfo> info =
178 AutomationInfo::FromValue(*automation, &install_warnings, error);
197 make_scoped_ptr(new const AutomationInfo));
312 AutomationInfo::AutomationInfo() : desktop(false), interact(false) { function in class:extensions::AutomationInfo
315 AutomationInfo::AutomationInfo(bool desktop, function in class:extensions::AutomationInfo
[all...]

Completed in 67 milliseconds