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

Side by Side Diff: chrome/browser/ui/startup/obsolete_os_info_bar.h

Issue 10843071: Create chrome/browser/api directory. Move infobar delegates used by Autofill to the directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments. Created 8 years, 4 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 #ifndef CHROME_BROWSER_UI_STARTUP_OBSOLETE_OS_INFO_BAR_H_ 5 #ifndef CHROME_BROWSER_UI_STARTUP_OBSOLETE_OS_INFO_BAR_H_
6 #define CHROME_BROWSER_UI_STARTUP_OBSOLETE_OS_INFO_BAR_H_ 6 #define CHROME_BROWSER_UI_STARTUP_OBSOLETE_OS_INFO_BAR_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/string16.h" 9 #include "base/string16.h"
10 #include "chrome/browser/tab_contents/link_infobar_delegate.h" 10 #include "chrome/browser/api/infobars/link_infobar_delegate.h"
11 #include "googleurl/src/gurl.h" 11 #include "googleurl/src/gurl.h"
12 12
13 class InfoBarTabHelper; 13 class InfoBarTabHelper;
14 14
15 namespace chrome { 15 namespace chrome {
16 16
17 // An infobar that is run with a string and a "Learn More" link. 17 // An infobar that is run with a string and a "Learn More" link.
18 class ObsoleteOSInfoBar : public LinkInfoBarDelegate { 18 class ObsoleteOSInfoBar : public LinkInfoBarDelegate {
19 public: 19 public:
20 ObsoleteOSInfoBar(InfoBarTabHelper* infobar_helper, 20 ObsoleteOSInfoBar(InfoBarTabHelper* infobar_helper,
21 const string16& message, 21 const string16& message,
22 const GURL& url); 22 const GURL& url);
23 virtual ~ObsoleteOSInfoBar(); 23 virtual ~ObsoleteOSInfoBar();
24 24
25 virtual string16 GetMessageTextWithOffset(size_t* link_offset) const OVERRIDE; 25 virtual string16 GetMessageTextWithOffset(size_t* link_offset) const OVERRIDE;
26 virtual string16 GetLinkText() const OVERRIDE; 26 virtual string16 GetLinkText() const OVERRIDE;
27 virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE; 27 virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE;
28 28
29 private: 29 private:
30 const string16 message_; 30 const string16 message_;
31 const GURL learn_more_url_; 31 const GURL learn_more_url_;
32 32
33 DISALLOW_COPY_AND_ASSIGN(ObsoleteOSInfoBar); 33 DISALLOW_COPY_AND_ASSIGN(ObsoleteOSInfoBar);
34 }; 34 };
35 35
36 } // namespace chrome 36 } // namespace chrome
37 37
38 #endif // CHROME_BROWSER_UI_STARTUP_OBSOLETE_OS_INFO_BAR_H_ 38 #endif // CHROME_BROWSER_UI_STARTUP_OBSOLETE_OS_INFO_BAR_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/startup/default_browser_prompt.cc ('k') | chrome/browser/ui/startup/session_crashed_prompt.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698