OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <limits> | 5 #include <limits> |
6 | 6 |
7 #include "chrome/browser/views/tabs/tab_renderer.h" | 7 #include "chrome/browser/views/tabs/tab_renderer.h" |
8 | 8 |
9 #include "chrome/app/theme/theme_resources.h" | 9 #include "grit/theme_resources.h" |
10 #include "chrome/browser/browser.h" | 10 #include "chrome/browser/browser.h" |
11 #include "chrome/browser/profile.h" | 11 #include "chrome/browser/profile.h" |
12 #include "chrome/browser/tab_contents/tab_contents.h" | 12 #include "chrome/browser/tab_contents/tab_contents.h" |
13 #include "chrome/browser/tabs/tab_strip_model.h" | 13 #include "chrome/browser/tabs/tab_strip_model.h" |
14 #include "chrome/common/gfx/chrome_canvas.h" | 14 #include "chrome/common/gfx/chrome_canvas.h" |
15 #include "chrome/common/gfx/chrome_font.h" | 15 #include "chrome/common/gfx/chrome_font.h" |
16 #include "chrome/common/l10n_util.h" | 16 #include "chrome/common/l10n_util.h" |
17 #include "chrome/common/resource_bundle.h" | 17 #include "chrome/common/resource_bundle.h" |
18 #include "chrome/common/win_util.h" | 18 #include "chrome/common/win_util.h" |
19 #include "generated_resources.h" | 19 #include "generated_resources.h" |
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 } | 680 } |
681 | 681 |
682 void TabRenderer::DisplayCrashedFavIcon() { | 682 void TabRenderer::DisplayCrashedFavIcon() { |
683 should_display_crashed_favicon_ = true; | 683 should_display_crashed_favicon_ = true; |
684 } | 684 } |
685 | 685 |
686 void TabRenderer::ResetCrashedFavIcon() { | 686 void TabRenderer::ResetCrashedFavIcon() { |
687 should_display_crashed_favicon_ = false; | 687 should_display_crashed_favicon_ = false; |
688 } | 688 } |
689 | 689 |
OLD | NEW |