Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(345)

Unified Diff: chrome/browser/ui/panels/panel.cc

Issue 7633034: Use Titlebar instead of TitleBar consistently in panels code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(

Powered by Google App Engine
This is Rietveld 408576698