Home | History | Annotate | Download | only in bubble

Lines Matching refs:arrow

30 // Inset the arrow a bit from the edge.
48 // to stack bubbles with no arrows correctly. Also calculates the arrow offset.
54 : BubbleBorder(params.arrow, params.shadow, params.arrow_color),
67 // Sets the bubble on top of the anchor when it has no arrow.
70 if (has_arrow(arrow())) {
74 if (arrow() == BubbleBorder::BOTTOM_RIGHT ||
75 arrow() == BubbleBorder::BOTTOM_LEFT) {
80 } else if (arrow() == BubbleBorder::LEFT_BOTTOM) {
82 } else if (arrow() == BubbleBorder::RIGHT_BOTTOM) {
102 if (arrow() == BubbleBorder::BOTTOM_RIGHT ||
103 arrow() == BubbleBorder::BOTTOM_LEFT) {
114 if (arrow() == BubbleBorder::BOTTOM_RIGHT)
256 arrow(BubbleBorder::NONE),
268 // Set arrow here so that it can be passed to the BubbleView constructor.
271 init_params->arrow = base::i18n::IsRTL() ?
274 init_params->arrow = BubbleBorder::TOP_LEFT;
276 init_params->arrow = BubbleBorder::LEFT_BOTTOM;
278 init_params->arrow = BubbleBorder::RIGHT_BOTTOM;
281 init_params->arrow = BubbleBorder::NONE;
291 : BubbleDelegateView(anchor, init_params.arrow),