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

Side by Side Diff: trunk/src/chrome/browser/ui/startup/obsolete_os_infobar_delegate.cc

Issue 102163002: Revert 238283 "Infobar system refactor." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years 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/ui/startup/obsolete_os_infobar_delegate.h" 5 #include "chrome/browser/ui/startup/obsolete_os_infobar_delegate.h"
6 6
7 #include "chrome/browser/infobars/infobar.h"
8 #include "chrome/browser/infobars/infobar_service.h" 7 #include "chrome/browser/infobars/infobar_service.h"
9 #include "content/public/browser/web_contents.h" 8 #include "content/public/browser/web_contents.h"
10 #include "grit/chromium_strings.h" 9 #include "grit/chromium_strings.h"
11 #include "grit/generated_resources.h" 10 #include "grit/generated_resources.h"
12 #include "ui/base/l10n/l10n_util.h" 11 #include "ui/base/l10n/l10n_util.h"
13 12
14 #if defined(TOOLKIT_GTK) 13 #if defined(TOOLKIT_GTK)
15 #include <gtk/gtk.h> 14 #include <gtk/gtk.h>
16 #endif 15 #endif
17 16
(...skipping 11 matching lines...) Expand all
29 // Ubuntu Lucid: GTK 2.20 28 // Ubuntu Lucid: GTK 2.20
30 // openSUSE 12.2 GTK 2.24 29 // openSUSE 12.2 GTK 2.24
31 // Ubuntu Precise: GTK 2.24 30 // Ubuntu Precise: GTK 2.24
32 if (!gtk_check_version(2, 24, 0)) 31 if (!gtk_check_version(2, 24, 0))
33 return; 32 return;
34 #else 33 #else
35 // No other platforms currently show this infobar. 34 // No other platforms currently show this infobar.
36 return; 35 return;
37 #endif 36 #endif
38 37
39 infobar_service->AddInfoBar(ConfirmInfoBarDelegate::CreateInfoBar( 38 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
40 scoped_ptr<ConfirmInfoBarDelegate>(new ObsoleteOSInfoBarDelegate()))); 39 new ObsoleteOSInfoBarDelegate(infobar_service)));
41 } 40 }
42 41
43 ObsoleteOSInfoBarDelegate::ObsoleteOSInfoBarDelegate() 42 ObsoleteOSInfoBarDelegate::ObsoleteOSInfoBarDelegate(
44 : ConfirmInfoBarDelegate() { 43 InfoBarService* infobar_service)
44 : ConfirmInfoBarDelegate(infobar_service) {
45 } 45 }
46 46
47 ObsoleteOSInfoBarDelegate::~ObsoleteOSInfoBarDelegate() { 47 ObsoleteOSInfoBarDelegate::~ObsoleteOSInfoBarDelegate() {
48 } 48 }
49 49
50 string16 ObsoleteOSInfoBarDelegate::GetMessageText() const { 50 string16 ObsoleteOSInfoBarDelegate::GetMessageText() const {
51 return l10n_util::GetStringUTF16(IDS_SYSTEM_OBSOLETE_MESSAGE); 51 return l10n_util::GetStringUTF16(IDS_SYSTEM_OBSOLETE_MESSAGE);
52 } 52 }
53 53
54 int ObsoleteOSInfoBarDelegate::GetButtons() const { 54 int ObsoleteOSInfoBarDelegate::GetButtons() const {
55 return BUTTON_NONE; 55 return BUTTON_NONE;
56 } 56 }
57 57
58 string16 ObsoleteOSInfoBarDelegate::GetLinkText() const { 58 string16 ObsoleteOSInfoBarDelegate::GetLinkText() const {
59 return l10n_util::GetStringUTF16(IDS_LEARN_MORE); 59 return l10n_util::GetStringUTF16(IDS_LEARN_MORE);
60 } 60 }
61 61
62 bool ObsoleteOSInfoBarDelegate::LinkClicked(WindowOpenDisposition disposition) { 62 bool ObsoleteOSInfoBarDelegate::LinkClicked(WindowOpenDisposition disposition) {
63 web_contents()->OpenURL(content::OpenURLParams( 63 web_contents()->OpenURL(content::OpenURLParams(
64 GURL("http://www.google.com/support/chrome/bin/answer.py?answer=95411"), 64 GURL("http://www.google.com/support/chrome/bin/answer.py?answer=95411"),
65 content::Referrer(), 65 content::Referrer(),
66 (disposition == CURRENT_TAB) ? NEW_FOREGROUND_TAB : disposition, 66 (disposition == CURRENT_TAB) ? NEW_FOREGROUND_TAB : disposition,
67 content::PAGE_TRANSITION_LINK, false)); 67 content::PAGE_TRANSITION_LINK, false));
68 return false; 68 return false;
69 } 69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698