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/extensions/theme_installed_infobar_delegate.h" | 5 #include "chrome/browser/extensions/theme_installed_infobar_delegate.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
10 #include "chrome/browser/chrome_notification_types.h" | 10 #include "chrome/browser/chrome_notification_types.h" |
11 #include "chrome/browser/extensions/extension_service.h" | 11 #include "chrome/browser/extensions/extension_service.h" |
12 #include "chrome/browser/infobars/infobar_service.h" | 12 #include "chrome/browser/infobars/infobar_service.h" |
13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
14 #include "chrome/browser/themes/theme_service.h" | 14 #include "chrome/browser/themes/theme_service.h" |
15 #include "chrome/browser/themes/theme_service_factory.h" | 15 #include "chrome/browser/themes/theme_service_factory.h" |
16 #include "chrome/browser/ui/browser_finder.h" | 16 #include "chrome/browser/ui/browser_finder.h" |
| 17 #include "chrome/browser/ui/host_desktop.h" |
17 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 18 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
18 #include "chrome/grit/generated_resources.h" | 19 #include "chrome/grit/generated_resources.h" |
19 #include "components/infobars/core/infobar.h" | 20 #include "components/infobars/core/infobar.h" |
20 #include "content/public/browser/notification_source.h" | 21 #include "content/public/browser/notification_source.h" |
21 #include "extensions/browser/extension_system.h" | 22 #include "extensions/browser/extension_system.h" |
22 #include "extensions/common/extension.h" | 23 #include "extensions/common/extension.h" |
23 #include "grit/theme_resources.h" | 24 #include "grit/theme_resources.h" |
24 #include "ui/base/l10n/l10n_util.h" | 25 #include "ui/base/l10n/l10n_util.h" |
25 #include "ui/gfx/vector_icons_public.h" | 26 #include "ui/gfx/vector_icons_public.h" |
26 | 27 |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 void ThemeInstalledInfoBarDelegate::Observe( | 161 void ThemeInstalledInfoBarDelegate::Observe( |
161 int type, | 162 int type, |
162 const content::NotificationSource& source, | 163 const content::NotificationSource& source, |
163 const content::NotificationDetails& details) { | 164 const content::NotificationDetails& details) { |
164 DCHECK_EQ(chrome::NOTIFICATION_BROWSER_THEME_CHANGED, type); | 165 DCHECK_EQ(chrome::NOTIFICATION_BROWSER_THEME_CHANGED, type); |
165 // If the new theme is different from what this info bar is associated with, | 166 // If the new theme is different from what this info bar is associated with, |
166 // close this info bar since it is no longer relevant. | 167 // close this info bar since it is no longer relevant. |
167 if (theme_id_ != theme_service_->GetThemeID()) | 168 if (theme_id_ != theme_service_->GetThemeID()) |
168 infobar()->RemoveSelf(); | 169 infobar()->RemoveSelf(); |
169 } | 170 } |
OLD | NEW |