| Index: chrome/browser/ui/views/toolbar/toolbar_view.cc
|
| diff --git a/chrome/browser/ui/views/toolbar/toolbar_view.cc b/chrome/browser/ui/views/toolbar/toolbar_view.cc
|
| index 7bf9b8c076c591b7dd1de2f6653ef8387f359755..8385f8e344550b2b71e2344630a899faa9dad537 100644
|
| --- a/chrome/browser/ui/views/toolbar/toolbar_view.cc
|
| +++ b/chrome/browser/ui/views/toolbar/toolbar_view.cc
|
| @@ -795,7 +795,7 @@ gfx::Size ToolbarView::SizeForContentSize(gfx::Size size) const {
|
| // pixel to show a border in the title bar, otherwise leave the size as zero
|
| // height.
|
| const int kAshBorderSpacing = 1;
|
| - if (browser_->host_desktop_type() == chrome::HOST_DESKTOP_TYPE_ASH)
|
| + if (browser_->host_desktop_type() == ui::HOST_DESKTOP_TYPE_ASH)
|
| size.Enlarge(0, kAshBorderSpacing);
|
| } else {
|
| const int kPopupBottomSpacingGlass = 1;
|
| @@ -855,7 +855,7 @@ void ToolbarView::OnShowHomeButtonChanged() {
|
| int ToolbarView::content_shadow_height() const {
|
| ui::ThemeProvider* theme_provider = GetThemeProvider();
|
| return theme_provider->GetDisplayProperty(
|
| - browser_->host_desktop_type() == chrome::HOST_DESKTOP_TYPE_ASH
|
| + browser_->host_desktop_type() == ui::HOST_DESKTOP_TYPE_ASH
|
| ? ThemeProperties::PROPERTY_TOOLBAR_VIEW_CONTENT_SHADOW_HEIGHT_ASH
|
| : ThemeProperties::PROPERTY_TOOLBAR_VIEW_CONTENT_SHADOW_HEIGHT);
|
| }
|
|
|