| 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 072cd823c16e4b5d6eef96903a312e1ab3a2931a..110a4f28b4d09a6a48273ec82f8dd581081a5ddf 100644 | 
| --- a/chrome/browser/ui/panels/native_panel.h | 
| +++ b/chrome/browser/ui/panels/native_panel.h | 
| @@ -81,15 +81,14 @@ class NativePanel { | 
| // will make sure that the panel is not obscured by other top-most windows. | 
| virtual void EnsurePanelFullyVisible() = 0; | 
|  | 
| -  // Sets whether the panel app icon is visible (usually refers to the app icons | 
| -  // in the desktop bar). | 
| -  virtual void SetPanelAppIconVisibility(bool visible) = 0; | 
| - | 
| // Sets whether the panel window is always on top. | 
| virtual void SetPanelAlwaysOnTop(bool on_top) = 0; | 
|  | 
| // Enables resizing by dragging edges/corners. | 
| virtual void EnableResizeByMouse(bool enable) = 0; | 
| + | 
| +  // Updates the visibility of the minimize and restore buttons. | 
| +  virtual void UpdateMinimizeRestoreButtonVisibility() = 0; | 
| }; | 
|  | 
| // A NativePanel utility interface used for accessing elements of the | 
|  |