Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Side by Side Diff: chrome/browser/extensions/theme_installed_infobar_delegate.cc

Issue 2911773002: Clean up unused grit header includes in chrome/ (Closed)
Patch Set: rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <stddef.h> 7 #include <stddef.h>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 10
11 #include "base/strings/utf_string_conversions.h" 11 #include "base/strings/utf_string_conversions.h"
12 #include "build/build_config.h" 12 #include "build/build_config.h"
13 #include "chrome/app/vector_icons/vector_icons.h" 13 #include "chrome/app/vector_icons/vector_icons.h"
14 #include "chrome/browser/chrome_notification_types.h" 14 #include "chrome/browser/chrome_notification_types.h"
15 #include "chrome/browser/extensions/extension_service.h" 15 #include "chrome/browser/extensions/extension_service.h"
16 #include "chrome/browser/infobars/infobar_service.h" 16 #include "chrome/browser/infobars/infobar_service.h"
17 #include "chrome/browser/profiles/profile.h" 17 #include "chrome/browser/profiles/profile.h"
18 #include "chrome/browser/themes/theme_service.h" 18 #include "chrome/browser/themes/theme_service.h"
19 #include "chrome/browser/themes/theme_service_factory.h" 19 #include "chrome/browser/themes/theme_service_factory.h"
20 #include "chrome/browser/ui/browser_finder.h" 20 #include "chrome/browser/ui/browser_finder.h"
21 #include "chrome/browser/ui/tabs/tab_strip_model.h" 21 #include "chrome/browser/ui/tabs/tab_strip_model.h"
22 #include "chrome/grit/generated_resources.h" 22 #include "chrome/grit/generated_resources.h"
23 #include "chrome/grit/theme_resources.h"
24 #include "components/infobars/core/infobar.h" 23 #include "components/infobars/core/infobar.h"
25 #include "content/public/browser/notification_source.h" 24 #include "content/public/browser/notification_source.h"
26 #include "extensions/browser/extension_system.h" 25 #include "extensions/browser/extension_system.h"
27 #include "extensions/common/extension.h" 26 #include "extensions/common/extension.h"
28 #include "ui/base/l10n/l10n_util.h" 27 #include "ui/base/l10n/l10n_util.h"
29 28
30 // static 29 // static
31 void ThemeInstalledInfoBarDelegate::Create( 30 void ThemeInstalledInfoBarDelegate::Create(
32 const extensions::Extension* new_theme, 31 const extensions::Extension* new_theme,
33 Profile* profile, 32 Profile* profile,
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 void ThemeInstalledInfoBarDelegate::Observe( 159 void ThemeInstalledInfoBarDelegate::Observe(
161 int type, 160 int type,
162 const content::NotificationSource& source, 161 const content::NotificationSource& source,
163 const content::NotificationDetails& details) { 162 const content::NotificationDetails& details) {
164 DCHECK_EQ(chrome::NOTIFICATION_BROWSER_THEME_CHANGED, type); 163 DCHECK_EQ(chrome::NOTIFICATION_BROWSER_THEME_CHANGED, type);
165 // If the new theme is different from what this info bar is associated with, 164 // 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. 165 // close this info bar since it is no longer relevant.
167 if (theme_id_ != theme_service_->GetThemeID()) 166 if (theme_id_ != theme_service_->GetThemeID())
168 infobar()->RemoveSelf(); 167 infobar()->RemoveSelf();
169 } 168 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/suspicious_extension_bubble_delegate.cc ('k') | chrome/browser/first_run/first_run_internal_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698