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

Side by Side Diff: chrome/browser/ui/gtk/infobars/confirm_infobar_gtk.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_GTK_INFOBARS_CONFIRM_INFOBAR_GTK_H_ 5 #ifndef CHROME_BROWSER_UI_GTK_INFOBARS_CONFIRM_INFOBAR_GTK_H_
6 #define CHROME_BROWSER_UI_GTK_INFOBARS_CONFIRM_INFOBAR_GTK_H_ 6 #define CHROME_BROWSER_UI_GTK_INFOBARS_CONFIRM_INFOBAR_GTK_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" 9 #include "chrome/browser/api/infobars/confirm_infobar_delegate.h"
10 #include "chrome/browser/ui/gtk/infobars/infobar_gtk.h" 10 #include "chrome/browser/ui/gtk/infobars/infobar_gtk.h"
11 #include "ui/base/gtk/gtk_signal.h" 11 #include "ui/base/gtk/gtk_signal.h"
12 12
13 typedef struct _GtkSizeGroup GtkSizeGroup; 13 typedef struct _GtkSizeGroup GtkSizeGroup;
14 typedef struct _GtkWidget GtkWidget; 14 typedef struct _GtkWidget GtkWidget;
15 15
16 // An infobar that shows a message, up to two optional buttons, and an optional, 16 // An infobar that shows a message, up to two optional buttons, and an optional,
17 // right-aligned link. This is commonly used to do things like: 17 // right-aligned link. This is commonly used to do things like:
18 // "Would you like to do X? [Yes] [No] _Learn More_ [x]" 18 // "Would you like to do X? [Yes] [No] _Learn More_ [x]"
19 class ConfirmInfoBarGtk : public InfoBarGtk { 19 class ConfirmInfoBarGtk : public InfoBarGtk {
(...skipping 13 matching lines...) Expand all
33 CHROMEGTK_CALLBACK_0(ConfirmInfoBarGtk, void, OnLinkClicked); 33 CHROMEGTK_CALLBACK_0(ConfirmInfoBarGtk, void, OnLinkClicked);
34 34
35 GtkWidget* confirm_hbox_; 35 GtkWidget* confirm_hbox_;
36 36
37 GtkSizeGroup* size_group_; 37 GtkSizeGroup* size_group_;
38 38
39 DISALLOW_COPY_AND_ASSIGN(ConfirmInfoBarGtk); 39 DISALLOW_COPY_AND_ASSIGN(ConfirmInfoBarGtk);
40 }; 40 };
41 41
42 #endif // CHROME_BROWSER_UI_GTK_INFOBARS_CONFIRM_INFOBAR_GTK_H_ 42 #endif // CHROME_BROWSER_UI_GTK_INFOBARS_CONFIRM_INFOBAR_GTK_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/collected_cookies_infobar_delegate.h ('k') | chrome/browser/ui/gtk/infobars/infobar_container_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698