| 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/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 "app/l10n_util.h" | 9 #include "app/l10n_util.h" |
| 10 #include "app/resource_bundle.h" | 10 #include "app/resource_bundle.h" |
| 11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" |
| 12 #include "chrome/browser/extensions/extensions_service.h" | 12 #include "chrome/browser/extensions/extensions_service.h" |
| 13 #include "chrome/browser/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
| 14 #include "chrome/browser/tab_contents/tab_contents.h" | 14 #include "chrome/browser/tab_contents/tab_contents.h" |
| 15 #include "chrome/browser/themes/browser_theme_provider.h" | 15 #include "chrome/browser/themes/browser_theme_provider.h" |
| 16 #include "chrome/common/extensions/extension.h" | 16 #include "chrome/common/extensions/extension.h" |
| 17 #include "chrome/common/notification_service.h" | 17 #include "chrome/common/notification_service.h" |
| 18 #include "grit/generated_resources.h" | 18 #include "grit/generated_resources.h" |
| 19 #include "grit/theme_resources.h" | 19 #include "grit/theme_resources.h" |
| 20 | 20 |
| 21 ThemeInstalledInfoBarDelegate::ThemeInstalledInfoBarDelegate( | 21 ThemeInstalledInfoBarDelegate::ThemeInstalledInfoBarDelegate( |
| 22 TabContents* tab_contents, | 22 TabContents* tab_contents, |
| 23 const Extension* new_theme, | 23 const Extension* new_theme, |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 // If the new theme is different from what this info bar is associated | 98 // If the new theme is different from what this info bar is associated |
| 99 // with, close this info bar since it is no longer relevant. | 99 // with, close this info bar since it is no longer relevant. |
| 100 const Extension* extension = Details<const Extension>(details).ptr(); | 100 const Extension* extension = Details<const Extension>(details).ptr(); |
| 101 if (!extension || theme_id_ != extension->id()) | 101 if (!extension || theme_id_ != extension->id()) |
| 102 tab_contents_->RemoveInfoBar(this); | 102 tab_contents_->RemoveInfoBar(this); |
| 103 } | 103 } |
| 104 | 104 |
| 105 bool ThemeInstalledInfoBarDelegate::MatchesTheme(const Extension* theme) { | 105 bool ThemeInstalledInfoBarDelegate::MatchesTheme(const Extension* theme) { |
| 106 return (theme && theme->id() == theme_id_); | 106 return (theme && theme->id() == theme_id_); |
| 107 } | 107 } |
| OLD | NEW |