Index: chrome/browser/ui/panels/native_panel.h |
=================================================================== |
--- chrome/browser/ui/panels/native_panel.h (revision 104349) |
+++ chrome/browser/ui/panels/native_panel.h (working copy) |
@@ -87,6 +87,9 @@ |
// Verifies, on a deepest possible level, if the Panel is showing the "Draw |
// Attention" effects to the user. May include checking colors etc. |
virtual bool VerifyDrawingAttention() const = 0; |
+ // Verifies, on a deepest possible level, if the titlebar of the Panel is |
+ // being painted correctly per its active state. |
+ virtual bool VerifyTitlebarPaintedAsActive(bool as_active) = 0; |
Dmitry Titov
2011/10/07 20:29:15
Does it verify that the panel is actually active o
jianli
2011/10/07 22:01:54
We want to verify that the titlebar is painted cor
Dmitry Titov
2011/10/07 22:26:41
Same logic here as VerifyDrawingAttention() - the
|
}; |
#endif // CHROME_BROWSER_UI_PANELS_NATIVE_PANEL_H_ |