Home
last modified time | relevance | path

Searched refs:chapter_stops (Results 1 – 2 of 2) sorted by relevance

/external/chromium/chrome/browser/ui/toolbar/
Dback_forward_menu_model.cc50 int chapter_stops = 0; in GetItemCount() local
54 chapter_stops = GetChapterStopCount(items); in GetItemCount()
56 if (chapter_stops) in GetItemCount()
57 items += chapter_stops + 1; // Chapter stops also need a separator. in GetItemCount()
204 int chapter_stops = GetChapterStopCount(history_items); in IsSeparator() local
205 if (chapter_stops == 0) in IsSeparator()
209 return (index == history_items + 1 + chapter_stops); in IsSeparator()
304 int chapter_stops = 0; in GetChapterStopCount() local
319 ++chapter_stops; in GetChapterStopCount()
320 } while (chapter_id != -1 && chapter_stops < kMaxChapterStops); in GetChapterStopCount()
[all …]
Dback_forward_menu_model_unittest.cc62 int chapter_stops) { in ValidateModel() argument
64 int c = std::min(BackForwardMenuModel::kMaxChapterStops, chapter_stops); in ValidateModel()