Home | History | Annotate | Download | only in handlers

Lines Matching refs:directive

25 void DirectiveHandler::AddDirective(const Directive& directive) {
27 DCHECK_EQ(directive.instruction_type(), TOKEN);
30 if (directive.has_published_message_id()) {
31 op_id = directive.published_message_id();
32 } else if (directive.has_subscription_id()) {
33 op_id = directive.subscription_id();
35 NOTREACHED() << "No operation associated with directive!";
39 const TokenInstruction& ti = directive.token_instruction();
46 ti, op_id, base::TimeDelta::FromMilliseconds(directive.ttl_millis()));