| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/views/ash/browser_non_client_frame_view_ash.h" | 5 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view_ash.h" |
| 6 | 6 |
| 7 #include "ash/wm/frame_painter.h" | 7 #include "ash/wm/frame_painter.h" |
| 8 #include "ash/wm/workspace/frame_maximize_button.h" | 8 #include "ash/wm/workspace/frame_maximize_button.h" |
| 9 #include "chrome/browser/themes/theme_service.h" | 9 #include "chrome/browser/themes/theme_service.h" |
| 10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
| 11 #include "chrome/browser/ui/ntp_background_util.h" | 11 #include "chrome/browser/ui/ntp_background_util.h" |
| 12 #include "chrome/browser/ui/search/search.h" | 12 #include "chrome/browser/ui/search/search.h" |
| 13 #include "chrome/browser/ui/search/search_delegate.h" | 13 #include "chrome/browser/ui/search/search_delegate.h" |
| 14 #include "chrome/browser/ui/search/search_model.h" | 14 #include "chrome/browser/ui/search/search_model.h" |
| 15 #include "chrome/browser/ui/search/search_ui.h" | 15 #include "chrome/browser/ui/search/search_ui.h" |
| (...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 BrowserNonClientFrameViewAsh::GetThemeFrameOverlayImage() const { | 626 BrowserNonClientFrameViewAsh::GetThemeFrameOverlayImage() const { |
| 627 ui::ThemeProvider* tp = GetThemeProvider(); | 627 ui::ThemeProvider* tp = GetThemeProvider(); |
| 628 if (tp->HasCustomImage(IDR_THEME_FRAME_OVERLAY) && | 628 if (tp->HasCustomImage(IDR_THEME_FRAME_OVERLAY) && |
| 629 browser_view()->IsBrowserTypeNormal() && | 629 browser_view()->IsBrowserTypeNormal() && |
| 630 !browser_view()->IsOffTheRecord()) { | 630 !browser_view()->IsOffTheRecord()) { |
| 631 return tp->GetImageSkiaNamed(ShouldPaintAsActive() ? | 631 return tp->GetImageSkiaNamed(ShouldPaintAsActive() ? |
| 632 IDR_THEME_FRAME_OVERLAY : IDR_THEME_FRAME_OVERLAY_INACTIVE); | 632 IDR_THEME_FRAME_OVERLAY : IDR_THEME_FRAME_OVERLAY_INACTIVE); |
| 633 } | 633 } |
| 634 return NULL; | 634 return NULL; |
| 635 } | 635 } |
| OLD | NEW |