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

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: Code review feedback. 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
« no previous file with comments | « chrome/browser/ui/panels/panel.h ('k') | chrome/browser/ui/panels/panel_browser_frame_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..1dcf1d42d70d0ec6b421740fc0faf7c5ff321802 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 {
« no previous file with comments | « chrome/browser/ui/panels/panel.h ('k') | chrome/browser/ui/panels/panel_browser_frame_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698