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

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

Issue 240193003: Move Infobars core files to the Infobars component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix components/OWNERS Created 6 years, 8 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 | Annotate | Revision Log
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 <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.h"
13 #include "chrome/browser/infobars/infobar_service.h" 12 #include "chrome/browser/infobars/infobar_service.h"
14 #include "chrome/browser/profiles/profile.h" 13 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/themes/theme_service.h" 14 #include "chrome/browser/themes/theme_service.h"
16 #include "chrome/browser/themes/theme_service_factory.h" 15 #include "chrome/browser/themes/theme_service_factory.h"
17 #include "chrome/browser/ui/browser_finder.h" 16 #include "chrome/browser/ui/browser_finder.h"
18 #include "chrome/browser/ui/tabs/tab_strip_model.h" 17 #include "chrome/browser/ui/tabs/tab_strip_model.h"
18 #include "components/infobars/core/infobar.h"
19 #include "content/public/browser/notification_source.h" 19 #include "content/public/browser/notification_source.h"
20 #include "extensions/common/extension.h" 20 #include "extensions/common/extension.h"
21 #include "grit/generated_resources.h" 21 #include "grit/generated_resources.h"
22 #include "grit/theme_resources.h" 22 #include "grit/theme_resources.h"
23 #include "ui/base/l10n/l10n_util.h" 23 #include "ui/base/l10n/l10n_util.h"
24 24
25 25
26 // static 26 // static
27 void ThemeInstalledInfoBarDelegate::Create( 27 void ThemeInstalledInfoBarDelegate::Create(
28 const extensions::Extension* new_theme, 28 const extensions::Extension* new_theme,
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 void ThemeInstalledInfoBarDelegate::Observe( 150 void ThemeInstalledInfoBarDelegate::Observe(
151 int type, 151 int type,
152 const content::NotificationSource& source, 152 const content::NotificationSource& source,
153 const content::NotificationDetails& details) { 153 const content::NotificationDetails& details) {
154 DCHECK_EQ(chrome::NOTIFICATION_BROWSER_THEME_CHANGED, type); 154 DCHECK_EQ(chrome::NOTIFICATION_BROWSER_THEME_CHANGED, type);
155 // If the new theme is different from what this info bar is associated with, 155 // If the new theme is different from what this info bar is associated with,
156 // close this info bar since it is no longer relevant. 156 // close this info bar since it is no longer relevant.
157 if (theme_id_ != theme_service_->GetThemeID()) 157 if (theme_id_ != theme_service_->GetThemeID())
158 infobar()->RemoveSelf(); 158 infobar()->RemoveSelf();
159 } 159 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698