Home
last modified time | relevance | path

Searched refs:action_type (Results 1 – 25 of 52) sorted by relevance

123

/external/chromium_org/chrome/browser/extensions/
Dextension_action_manager_unittest.cc34 const char* action_type);
47 ExtensionAction* GetAction(const char* action_type,
53 void TestPopulateMissingValues(const char* action_type);
74 const char* action_type) { in BuildExtension() argument
80 .Set(action_type, action) in BuildExtension()
105 const char* action_type, in GetAction() argument
107 return (action_type == kBrowserAction) ? in GetAction()
113 const char* action_type) { in TestPopulateMissingValues() argument
121 action_type); in TestPopulateMissingValues()
124 const ExtensionAction* action = GetAction(action_type, *extension.get()); in TestPopulateMissingValues()
[all …]
Dextension_action.cc80 extensions::ActionInfo::Type action_type, in ExtensionAction() argument
82 : extension_id_(extension_id), action_type_(action_type) { in ExtensionAction()
86 action_type == extensions::ActionInfo::TYPE_BROWSER); in ExtensionAction()
264 action_type()); in PaintBadge()
281 action_type()), in GetIconWithBadge()
322 return GetIconSizeForType(action_type()); in GetIconWidth()
Dextension_action_manager.cc129 ActionInfo::Type action_type, in GetOrCreateOrNull() argument
148 extension.id(), action_type, *action_info)); in GetOrCreateOrNull()
Dextension_action.h57 extensions::ActionInfo::Type action_type,
74 extensions::ActionInfo::Type action_type() const { in action_type() function
Dextension_action_icon_factory.cc40 ExtensionAction::GetIconSizeForType(action_->action_type()), in ExtensionActionIconFactory()
/external/chromium_org/chrome/browser/extensions/api/activity_log_private/
Dactivity_log_private_api.cc106 Action::ActionType action_type = Action::ACTION_API_CALL; in RunAsync() local
109 action_type = Action::ACTION_API_CALL; in RunAsync()
112 action_type = Action::ACTION_API_EVENT; in RunAsync()
115 action_type = Action::ACTION_CONTENT_SCRIPT; in RunAsync()
118 action_type = Action::ACTION_DOM_ACCESS; in RunAsync()
121 action_type = Action::ACTION_DOM_EVENT; in RunAsync()
124 action_type = Action::ACTION_WEB_REQUEST; in RunAsync()
128 action_type = Action::ACTION_ANY; in RunAsync()
147 action_type, in RunAsync()
/external/chromium_org/apps/
Dapp_load_service.cc31 : action_type(LAUNCH), in PostReloadAction()
48 post_reload_actions_[extension_id].action_type = RESTART; in RestartApplication()
74 action.action_type = LAUNCH_WITH_COMMAND_LINE; in LoadAndLaunch()
100 switch (it->second.action_type) { in Observe()
130 post_reload_actions_[extension->id()].action_type = LAUNCH; in OnExtensionUnloaded()
Dapp_load_service.h41 PostReloadActionType action_type; member
/external/chromium_org/ui/events/ozone/device/udev/
Ddevice_manager_udev.cc172 DeviceEvent::ActionType action_type; in ProcessMessage() local
174 action_type = DeviceEvent::ADD; in ProcessMessage()
176 action_type = DeviceEvent::REMOVE; in ProcessMessage()
178 action_type = DeviceEvent::CHANGE; in ProcessMessage()
183 new DeviceEvent(device_type, action_type, base::FilePath(path))); in ProcessMessage()
/external/wpa_supplicant_8/src/ap/
Dwnm_ap.c47 u8 action_type, u16 intval) in ieee802_11_send_wnmsleep_resp() argument
60 enum wnm_oper tfs_oper = action_type == WNM_SLEEP_MODE_ENTER ? in ieee802_11_send_wnmsleep_resp()
74 wnmsleep_ie.action_type = action_type; in ieee802_11_send_wnmsleep_resp()
109 action_type != WNM_SLEEP_MODE_EXIT) { in ieee802_11_send_wnmsleep_resp()
157 wnmsleep_ie.action_type == WNM_SLEEP_MODE_ENTER) { in ieee802_11_send_wnmsleep_resp()
171 wnmsleep_ie.action_type == WNM_SLEEP_MODE_EXIT) { in ieee802_11_send_wnmsleep_resp()
224 if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_ENTER && in ieee802_11_rx_wnmsleep_req()
238 wnmsleep_ie->action_type, in ieee802_11_rx_wnmsleep_req()
241 if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_EXIT) { in ieee802_11_rx_wnmsleep_req()
Dieee802_11_shared.c115 const u8 action_type, const u8 *trans_id) in ieee802_11_sa_query_action() argument
120 if (action_type == WLAN_SA_QUERY_REQUEST) { in ieee802_11_sa_query_action()
125 if (action_type != WLAN_SA_QUERY_RESPONSE) { in ieee802_11_sa_query_action()
127 "Action %d", action_type); in ieee802_11_sa_query_action()
/external/chromium_org/chrome/browser/ui/views/extensions/
Dextension_action_view_controller.cc49 DCHECK(extension_action->action_type() == ActionInfo::TYPE_PAGE || in ExtensionActionViewController()
50 extension_action->action_type() == ActionInfo::TYPE_BROWSER); in ExtensionActionViewController()
138 DCHECK(extension_action_->action_type() == ActionInfo::TYPE_BROWSER || in AcceleratorPressed()
155 return extension_action_->action_type() == ActionInfo::TYPE_PAGE ? in CanHandleAccelerators()
277 if (extension_action_->action_type() == ActionInfo::TYPE_PAGE) { in GetExtensionCommand()
/external/chromium_org/chrome/common/
Dicon_with_badge_image_source.cc19 extensions::ActionInfo::Type action_type) in IconWithBadgeImageSource() argument
26 action_type_(action_type) { in IconWithBadgeImageSource()
Dbadge_util.h36 extensions::ActionInfo::Type action_type);
Dbadge_util.cc103 extensions::ActionInfo::Type action_type) { in PaintBadge() argument
150 action_type == extensions::ActionInfo::TYPE_BROWSER ? in PaintBadge()
Dicon_with_badge_image_source.h29 extensions::ActionInfo::Type action_type);
/external/chromium_org/chrome/browser/extensions/activity_log/
Dactivity_actions.cc71 const ActionType action_type, in Action() argument
76 action_type_(action_type), in Action()
91 extension_id(), time(), action_type(), api_name(), action_id())); in Clone()
219 switch (action_type()) { in ConvertToExtensionActivity()
506 if (lhs->action_type() != rhs->action_type()) in operator ()()
507 return lhs->action_type() < rhs->action_type(); in operator ()()
Dactivity_log.cc69 Action::ActionType action_type; member
163 const ApiInfo* Lookup(Action::ActionType action_type, in Lookup() argument
169 if (i->second->action_type != action_type) in Lookup()
243 action->action_type(), action->api_name()); in ExtractUrls()
541 if (action->action_type() == Action::ACTION_DOM_ACCESS && in LogAction()
Dactivity_actions.h93 const ActionType action_type,
115 ActionType action_type() const { return action_type_; } in action_type() function
Dactivity_log_policy.cc115 if (action->action_type() == Action::ACTION_WEB_REQUEST) { in StripPrivacySensitiveFields()
132 std::make_pair(action->action_type(), action->api_name())) == in StripArguments()
/external/chromium_org/chrome/browser/web_resource/
Dpromo_resource_service_mobile_ntp_unittest.cc80 EXPECT_EQ(mobile_promo_.action_type(), promo_action_type_); in TestNotification()
104 EXPECT_EQ(prefs_mobile_promo.action_type(), in TestInitFromPrefs()
105 mobile_promo_.action_type()); in TestInitFromPrefs()
Dnotification_promo_mobile_ntp.h35 const std::string& action_type() const { return action_type_; } in action_type() function
/external/chromium_org/chrome/browser/extensions/api/extension_action/
Dextension_action_api.cc220 if (extension_action->action_type() == ActionInfo::TYPE_PAGE && in ShowExtensionActionPopup()
241 if (extension_action->action_type() == ActionInfo::TYPE_PAGE) in NotifyChange()
287 switch (extension_action.action_type()) { in ExtensionActionExecuted()
382 ActionInfo::Type action_type = extension_action_->action_type(); in RunSync() local
384 action_type == ActionInfo::TYPE_BROWSER || in RunSync()
385 action_type == ActionInfo::TYPE_SYSTEM_INDICATOR); in RunSync()
/external/chromium_org/ui/events/ozone/device/
Ddevice_event.h30 ActionType action_type() const { return action_type_; } in action_type() function
/external/wpa_supplicant_8/wpa_supplicant/
Dwnm_sta.c74 wnmsleep_ie->action_type = action; in ieee802_11_send_wnmsleep_req()
286 wnmsleep_ie->action_type, wnmsleep_ie->intval); in ieee802_11_rx_wnmsleep_resp()
287 if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_ENTER) { in ieee802_11_rx_wnmsleep_resp()
290 } else if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_EXIT) { in ieee802_11_rx_wnmsleep_resp()
296 wnmsleep_ie->action_type, wnmsleep_ie->intval); in ieee802_11_rx_wnmsleep_resp()
297 if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_ENTER) in ieee802_11_rx_wnmsleep_resp()
300 else if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_EXIT) in ieee802_11_rx_wnmsleep_resp()

123