| Index: chrome/browser/ui/panels/panel_browser_window_cocoa.mm
|
| ===================================================================
|
| --- chrome/browser/ui/panels/panel_browser_window_cocoa.mm (revision 104349)
|
| +++ chrome/browser/ui/panels/panel_browser_window_cocoa.mm (working copy)
|
| @@ -282,6 +282,7 @@
|
| virtual void CancelDragTitlebar() OVERRIDE;
|
| virtual void FinishDragTitlebar() OVERRIDE;
|
| virtual bool VerifyDrawingAttention() const OVERRIDE;
|
| + virtual bool VerifyTitlebarPaintedAsActive(bool as_active) OVERRIDE;
|
|
|
| private:
|
| PanelTitlebarViewCocoa* titlebar() const;
|
| @@ -327,3 +328,7 @@
|
| return [titlebar() isDrawingAttention];
|
| }
|
|
|
| +bool NativePanelTestingCocoa::VerifyTitlebarPaintedAsActive(bool as_active) {
|
| + // TODO(jianli): to be implemented.
|
| + return false;
|
| +}
|
|
|