Searched defs:dom_verb (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/chrome/browser/extensions/activity_log/
H A Dactivity_log_unittest.cc129 int dom_verb = -1; local
137 // Test that the dom_verb field was changed to XHR (from METHOD). This
143 &dom_verb));
144 ASSERT_EQ(DomActionType::XHR, dom_verb);
169 int dom_verb = -1; local
184 other->GetInteger(activity_log_constants::kActionDomVerb, &dom_verb));
185 ASSERT_EQ(DomActionType::SETTER, dom_verb);
H A Dactivity_actions.cc269 int dom_verb; local
271 &dom_verb)) {
272 switch (static_cast<DomActionType::Type>(dom_verb)) {
274 other_field->dom_verb = ExtensionActivity::Other::DOM_VERB_GETTER;
277 other_field->dom_verb = ExtensionActivity::Other::DOM_VERB_SETTER;
280 other_field->dom_verb = ExtensionActivity::Other::DOM_VERB_METHOD;
283 other_field->dom_verb = ExtensionActivity::Other::DOM_VERB_INSERTED;
286 other_field->dom_verb = ExtensionActivity::Other::DOM_VERB_XHR;
289 other_field->dom_verb = ExtensionActivity::Other::DOM_VERB_WEBREQUEST;
292 other_field->dom_verb
[all...]
H A Duma_policy.cc115 int dom_verb; local
118 activity_log_constants::kActionDomVerb, &dom_verb)) {
123 DomActionType::Type dom_type = static_cast<DomActionType::Type>(dom_verb);
H A Dactivity_log.cc552 int dom_verb = -1; local
553 if (other->GetInteger(constants::kActionDomVerb, &dom_verb) &&
554 dom_verb == DomActionType::METHOD) {

Completed in 602 milliseconds