Chromium Code Reviews| Index: chrome/browser/ui/panels/panel.cc |
| diff --git a/chrome/browser/ui/panels/panel.cc b/chrome/browser/ui/panels/panel.cc |
| index 093441155e38948442ece0fa7b4b547849626519..c4461e5ce55b9e70ee6a06833fe9e15251ae10ac 100644 |
| --- a/chrome/browser/ui/panels/panel.cc |
| +++ b/chrome/browser/ui/panels/panel.cc |
| @@ -57,13 +57,13 @@ void Panel::SetExpansionState(ExpansionState new_expansion_state) { |
| Deactivate(); |
| } |
| -bool Panel::ShouldBringUpTitleBar(int mouse_x, int mouse_y) const { |
| +bool Panel::ShouldBringUpTitlebar(int mouse_x, int mouse_y) const { |
| // Skip the expanded panel. |
| if (expansion_state_ == Panel::EXPANDED) |
| return false; |
| // Let the native panel decide. |
| - return native_panel_->ShouldBringUpPanelTitleBar(mouse_x, mouse_y); |
| + return native_panel_->ShouldBringUpPanelTitlebar(mouse_x, mouse_y); |
| } |
| bool Panel::IsDrawingAttention() const { |
| @@ -125,7 +125,7 @@ void Panel::ToolbarSizeChanged(bool is_animating){ |
| } |
| void Panel::UpdateTitleBar() { |
| - native_panel_->UpdatePanelTitleBar(); |
| + native_panel_->UpdatePanelTitlebar(); |
|
jianli
2011/08/12 21:34:51
ditto.
prasadt
2011/08/12 21:59:30
Done.
|
| } |
| void Panel::BookmarkBarStateChanged( |