OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/chromeos/frame/normal_browser_frame_view.h" | 5 #include "chrome/browser/chromeos/frame/normal_browser_frame_view.h" |
6 | 6 |
7 #include "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
8 #include "app/resource_bundle.h" | 8 #include "app/resource_bundle.h" |
9 #include "app/theme_provider.h" | 9 #include "app/theme_provider.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "chrome/browser/browser_theme_provider.h" | |
13 #include "chrome/browser/tab_contents/tab_contents.h" | 12 #include "chrome/browser/tab_contents/tab_contents.h" |
| 13 #include "chrome/browser/themes/browser_theme_provider.h" |
14 #include "chrome/browser/views/frame/browser_frame.h" | 14 #include "chrome/browser/views/frame/browser_frame.h" |
15 #include "chrome/browser/views/frame/browser_view.h" | 15 #include "chrome/browser/views/frame/browser_view.h" |
16 #include "chrome/browser/views/tabs/tab_strip.h" | 16 #include "chrome/browser/views/tabs/tab_strip.h" |
17 #include "chrome/common/chrome_switches.h" | 17 #include "chrome/common/chrome_switches.h" |
18 #include "gfx/canvas.h" | 18 #include "gfx/canvas.h" |
19 #include "gfx/font.h" | 19 #include "gfx/font.h" |
20 #include "gfx/path.h" | 20 #include "gfx/path.h" |
21 #include "grit/app_resources.h" | 21 #include "grit/app_resources.h" |
22 #include "grit/chromium_strings.h" | 22 #include "grit/chromium_strings.h" |
23 #include "grit/generated_resources.h" | 23 #include "grit/generated_resources.h" |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 bottom_edge_height, toolbar_bounds.right(), bottom_y, | 366 bottom_edge_height, toolbar_bounds.right(), bottom_y, |
367 toolbar_right->width(), bottom_edge_height, false); | 367 toolbar_right->width(), bottom_edge_height, false); |
368 | 368 |
369 // Draw the content/toolbar separator. | 369 // Draw the content/toolbar separator. |
370 canvas->FillRectInt(ResourceBundle::toolbar_separator_color, | 370 canvas->FillRectInt(ResourceBundle::toolbar_separator_color, |
371 toolbar_bounds.x(), toolbar_bounds.bottom() - kClientEdgeThickness, | 371 toolbar_bounds.x(), toolbar_bounds.bottom() - kClientEdgeThickness, |
372 toolbar_bounds.width(), kClientEdgeThickness); | 372 toolbar_bounds.width(), kClientEdgeThickness); |
373 } | 373 } |
374 | 374 |
375 } // namespace chromeos | 375 } // namespace chromeos |
OLD | NEW |