Home | History | Annotate | Download | only in page

Lines Matching full:interaction

47     """ Create an action.Interaction object that issues interaction record.
49 An interaction record is a labeled time period containing
50 interaction that developers care about. Each set of metrics
53 To mark the start of interaction record, call Begin() method on the returned
54 object. To mark the finish of interaction record, call End() method on
56 interaction record that covers the actions in the with block.
64 label: A label for this particular interaction. This can be any
67 as this interaction. All interactions with the same logical name must
71 An instance of action_runner.Interaction
77 return Interaction(self._tab, label, flags)
80 """ Create an action.Interaction object that issues gesture-based
81 interaction record.
83 This is similar to normal interaction record, but it will
84 auto-narrow the interaction time period to only include the
89 The interaction record label will be prepended with 'Gesture_'.
96 label: A label for this particular interaction. This can be any
99 as this interaction. All interactions with the same logical name must
103 An instance of action_runner.Interaction
669 """Pause the page execution and wait for terminal interaction.
688 class Interaction(object):
710 'interaction record is not marked.')