HomeSort by relevance Sort by last modified time
    Searched refs:send_to_uma (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/chrome/browser/chromeos/
boot_times_loader.h 40 // /tmp/login-times-sent after login is done. If |send_to_uma| is true
43 void AddLoginTimeMarker(const std::string& marker_name, bool send_to_uma);
46 // /tmp/logout-times-sent after logout is done. If |send_to_uma| is true
49 void AddLogoutTimeMarker(const std::string& marker_name, bool send_to_uma);
96 TimeMarker(const std::string& name, bool send_to_uma)
99 send_to_uma_(send_to_uma) {}
102 bool send_to_uma() const { return send_to_uma_; } function in class:chromeos::BootTimesLoader::TimeMarker
boot_times_loader.cc 192 if (tm.send_to_uma()) {
303 const std::string& marker_name, bool send_to_uma) {
304 AddMarker(&login_time_markers_, TimeMarker(marker_name, send_to_uma));
308 const std::string& marker_name, bool send_to_uma) {
309 AddMarker(&logout_time_markers_, TimeMarker(marker_name, send_to_uma));
  /external/chromium/chrome/browser/chromeos/
boot_times_loader.h 73 // /tmp/login-times-sent after login is done. If |send_to_uma| is true
76 void AddLoginTimeMarker(const std::string& marker_name, bool send_to_uma);
79 // /tmp/logout-times-sent after logout is done. If |send_to_uma| is true
82 void AddLogoutTimeMarker(const std::string& marker_name, bool send_to_uma);
131 TimeMarker(const std::string& name, bool send_to_uma)
134 send_to_uma_(send_to_uma) {}
137 bool send_to_uma() const { return send_to_uma_; } function in class:chromeos::BootTimesLoader::TimeMarker
boot_times_loader.cc 278 if (tm.send_to_uma()) {
351 const std::string& marker_name, bool send_to_uma) {
352 login_time_markers_.push_back(TimeMarker(marker_name, send_to_uma));
356 const std::string& marker_name, bool send_to_uma) {
357 logout_time_markers_.push_back(TimeMarker(marker_name, send_to_uma));

Completed in 58 milliseconds