Chromium Code Reviews| Index: chrome/browser/ui/cocoa/browser_window_controller.h |
| diff --git a/chrome/browser/ui/cocoa/browser_window_controller.h b/chrome/browser/ui/cocoa/browser_window_controller.h |
| index e305c5eb16c81fddb0955094780cdb3262d594cc..20f82bf9bcec54d12cb953b6109234fe05fcf280 100644 |
| --- a/chrome/browser/ui/cocoa/browser_window_controller.h |
| +++ b/chrome/browser/ui/cocoa/browser_window_controller.h |
| @@ -380,12 +380,13 @@ class Command; |
| - (void)executeExtensionCommand:(const std::string&)extension_id |
| command:(const extensions::Command&)command; |
| -// To set whether the window has a tab playing audio or muted audio playing. |
| -- (void)setMediaState:(TabMediaState)mediaState; |
| +// Sets the alert state of the tab e.g. audio playing, media recording, etc. |
| +// Sett TabUtils::TabAlertState for a list of all possible alert states. |
|
miu
2016/03/29 02:22:52
s/Sett/See/
ortuno
2016/03/29 15:14:54
Done.
|
| +- (void)setAlertState:(TabAlertState)alertState; |
| -// Returns current media state, determined by the media state of tabs, set by |
| -// UpdateMediaState. |
| -- (TabMediaState)mediaState; |
| +// Returns current alert state, determined by the alert state of tabs, set by |
| +// UpdateAlertState. |
| +- (TabAlertState)alertState; |
| @end // @interface BrowserWindowController |