Searched refs:dom_verb (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/chrome/browser/extensions/activity_log/
H A Dactivity_actions.cc280 int dom_verb; local
282 &dom_verb)) {
283 switch (static_cast<DomActionType::Type>(dom_verb)) {
285 other_field->dom_verb = ExtensionActivity::Other::DOM_VERB_GETTER;
288 other_field->dom_verb = ExtensionActivity::Other::DOM_VERB_SETTER;
291 other_field->dom_verb = ExtensionActivity::Other::DOM_VERB_METHOD;
294 other_field->dom_verb = ExtensionActivity::Other::DOM_VERB_INSERTED;
297 other_field->dom_verb = ExtensionActivity::Other::DOM_VERB_XHR;
300 other_field->dom_verb = ExtensionActivity::Other::DOM_VERB_WEBREQUEST;
303 other_field->dom_verb
[all...]
H A Dactivity_log_unittest.cc131 int dom_verb = -1; local
139 // Test that the dom_verb field was changed to XHR (from METHOD). This
145 &dom_verb));
146 ASSERT_EQ(DomActionType::XHR, dom_verb);
171 int dom_verb = -1; local
186 other->GetInteger(activity_log_constants::kActionDomVerb, &dom_verb));
187 ASSERT_EQ(DomActionType::SETTER, dom_verb);
H A Duma_policy.cc114 int dom_verb = DomActionType::MODIFIED; local
117 activity_log_constants::kActionDomVerb, &dom_verb))
121 DomActionType::Type dom_type = static_cast<DomActionType::Type>(dom_verb);
H A Dactivity_log.cc545 int dom_verb = -1; local
546 if (other->GetInteger(constants::kActionDomVerb, &dom_verb) &&
547 dom_verb == DomActionType::METHOD) {
/external/chromium_org/chrome/browser/extensions/api/activity_log_private/
H A Dactivity_log_private_api_unittest.cc67 ASSERT_EQ(ExtensionActivity::Other::DOM_VERB_INSERTED, other->dom_verb);

Completed in 115 milliseconds