Home | History | Annotate | Download | only in browser

Lines Matching full:refresh

188   return "<meta http-equiv=\"refresh\" "
461 std::string GetNetworkHtmlInfo(int refresh) {
466 if (refresh > 0)
467 output.append("<meta http-equiv=\"refresh\" content=\"" +
468 base::IntToString(refresh) + "\"/>");
470 if (refresh > 0) {
472 base::IntToString(refresh) + "s)");
474 output.append("(To auto-refresh this page: about:network/&lt;secs&gt;)");
540 int refresh;
541 base::StringToInt(query, &refresh);
542 return GetNetworkHtmlInfo(refresh);