/external/chromium/chrome/browser/chromeos/ |
low_battery_observer.cc | 42 // The urgent flag is used to re-notify the user if the power level 45 bool urgent = !line_power && local 46 (notification_.urgent() || remaining_minutes <= critical); 64 Show(remaining, urgent); 68 Show(remaining, urgent); 73 void LowBatteryObserver::Show(base::TimeDelta remaining, bool urgent) { 75 TimeFormat::TimeRemaining(remaining)), urgent, true); local
|
low_battery_observer.h | 30 void Show(base::TimeDelta remaining, bool urgent);
|
/external/chromium/chrome/browser/chromeos/notifications/ |
system_notification.cc | 55 bool urgent, 57 Show(message, string16(), NULL, urgent, sticky); 63 bool urgent, 68 // Force showing a user hidden notification on an urgent transition. 69 if (urgent && !urgent_) { 81 urgent_ = urgent;
|
system_notification.h | 45 // on a transition to urgent, the notification will be shown if it was 47 void Show(const string16& message, bool urgent, bool sticky); 52 MessageCallback* callback, bool urgent, bool sticky); 61 // Current urgent state for this notification. 62 bool urgent() const { return urgent_; } function in class:chromeos::SystemNotification
|
/external/chromium/chrome/browser/chromeos/frame/ |
panel_controller.cc | 85 if (panel_controller_->urgent()) { 185 void PanelController::SetUrgent(bool urgent) { 186 if (!urgent) 188 if (urgent == urgent_) 190 if (urgent && focused_) 192 if (urgent && base::TimeTicks::Now() < urgent_cleared_time_ + kSetUrgentDelay) 194 urgent_ = urgent; 196 gtk_window_set_urgency_hint(panel_, urgent ? TRUE : FALSE); 245 // Activating the panel also clears the urgent state. 310 // Clear urgent when focused [all...] |
panel_controller.h | 80 void SetUrgent(bool urgent); 85 bool urgent() { return urgent_; } function in class:chromeos::PanelController 172 // Urgent (highlight) state. 175 // Timestamp to prevent setting urgent immediately after clearing it.
|