Chromium Code Reviews| Index: chrome/browser/ui/panels/native_panel.h |
| diff --git a/chrome/browser/ui/panels/native_panel.h b/chrome/browser/ui/panels/native_panel.h |
| index 4d1581d81b2273b86d9e09523001176f5c693616..59c84f3c76f76eb83396ab4e7a77cc51134b8d6f 100644 |
| --- a/chrome/browser/ui/panels/native_panel.h |
| +++ b/chrome/browser/ui/panels/native_panel.h |
| @@ -58,6 +58,7 @@ class NativePanel { |
| const NativeWebKeyboardEvent& event, bool* is_keyboard_shortcut) = 0; |
| virtual void HandlePanelKeyboardEvent( |
| const NativeWebKeyboardEvent& event) = 0; |
| + virtual void FullScreenModeChanged(bool is_full_screen_mode_on) = 0; |
|
dcheng
2011/11/30 01:07:28
Can we use an enum instead of a bool?
Dmitry Titov
2011/11/30 01:35:53
Naming: It is unclear if this is about the panel b
Dmitry Titov
2011/11/30 01:35:53
I think it's ok here. It is mandatory only if the
prasadt
2011/11/30 02:38:47
I initially started with an enum but bool felt mor
prasadt
2011/11/30 02:38:47
The function does both dodging and undodging thoug
prasadt
2011/11/30 02:38:47
Done.
|
| virtual Browser* GetPanelBrowser() const = 0; |
| virtual void DestroyPanelBrowser() = 0; |