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 6ceb2f108818a8b0d75feb711e4f653853407d63..1293958f9c94855385352090af965677a9246cdb 100644 |
--- a/chrome/browser/ui/panels/native_panel.h |
+++ b/chrome/browser/ui/panels/native_panel.h |
@@ -40,21 +40,21 @@ class NativePanel { |
// The native panel needs to update the bounds. In addition, it needs to watch |
// for the mouse movement so that it knows when to bring up or down all the |
// minimized panels. To do this, when the mouse moves, the native panel needs |
- // to call PanelManager::ShouldBringUpTitleBarForAllMinimizedPanels to check. |
+ // to call PanelManager::ShouldBringUpTitlebarForAllMinimizedPanels to check. |
virtual void OnPanelExpansionStateChanged( |
Panel::ExpansionState expansion_state) = 0; |
// When the mouse is at (mouse_x, mouse_y) in screen coordinate system, finds |
// out if the title-bar needs to pop up for the minimized panel that is only |
// shown as 3-pixel lines. |
- virtual bool ShouldBringUpPanelTitleBar(int mouse_x, int mouse_y) const = 0; |
+ virtual bool ShouldBringUpPanelTitlebar(int mouse_x, int mouse_y) const = 0; |
virtual void ClosePanel() = 0; |
virtual void ActivatePanel() = 0; |
virtual void DeactivatePanel() = 0; |
virtual bool IsPanelActive() const = 0; |
virtual gfx::NativeWindow GetNativePanelHandle() = 0; |
- virtual void UpdatePanelTitleBar() = 0; |
+ virtual void UpdatePanelTitlebar() = 0; |
jianli
2011/08/12 21:34:51
This should remain intact.
prasadt
2011/08/12 21:59:30
Done.
|
virtual void ShowTaskManagerForPanel() = 0; |
virtual FindBar* CreatePanelFindBar() = 0; |
virtual void NotifyPanelOnUserChangedTheme() = 0; |