Searched refs:kMaxTooltipLength (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/ui/views/widget/
H A Dtooltip_manager.cc16 const size_t kMaxTooltipLength = 1024; member in namespace:__anon14576
35 // Clamp the tooltip length to kMaxTooltipLength so that we don't
37 if (text->length() > kMaxTooltipLength)
38 *text = text->substr(0, kMaxTooltipLength);
/external/chromium_org/ui/views/corewm/
H A Dtooltip_controller.cc58 const size_t kMaxTooltipLength = 1024; member in namespace:__anon14515
360 // Clamp the tooltip length to kMaxTooltipLength so that we don't
362 if (text->length() > kMaxTooltipLength)
363 *text = text->substr(0, kMaxTooltipLength);
/external/chromium/chrome/browser/renderer_host/
H A Drender_widget_host_view_gtk.cc813 const int kMaxTooltipLength = 8 << 10; local
814 // Clamp the tooltip length to kMaxTooltipLength so that we don't
820 kMaxTooltipLength);
H A Drender_widget_host_view_win.cc77 const int kMaxTooltipLength = 1024; member in namespace:__anon2389
707 // Clamp the tooltip length to kMaxTooltipLength so that we don't
711 l10n_util::TruncateString(tooltip_text, kMaxTooltipLength);
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_view_gtk.cc933 const int kMaxTooltipLength = 8 << 10; local
934 // Clamp the tooltip length to kMaxTooltipLength so that we don't
939 ui::TruncateString(tooltip_text, kMaxTooltipLength);
H A Drender_widget_host_view_win.cc95 const int kMaxTooltipLength = 1024; member in namespace:content::__anon7777
842 // Clamp the tooltip length to kMaxTooltipLength so that we don't
846 ui::TruncateString(tooltip_text, kMaxTooltipLength);

Completed in 553 milliseconds