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

Side by Side Diff: chrome/browser/ui/views/sync/profile_signin_confirmation_dialog_views.h

Issue 18179004: Dismiss action in tab modal dialogs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test for Mac Created 7 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_VIEWS_SYNC_PROFILE_SIGNIN_CONFIRMATION_DIALOG_VIEWS_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_SYNC_PROFILE_SIGNIN_CONFIRMATION_DIALOG_VIEWS_H_
6 #define CHROME_BROWSER_UI_VIEWS_SYNC_PROFILE_SIGNIN_CONFIRMATION_DIALOG_VIEWS_H_ 6 #define CHROME_BROWSER_UI_VIEWS_SYNC_PROFILE_SIGNIN_CONFIRMATION_DIALOG_VIEWS_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "chrome/browser/ui/sync/profile_signin_confirmation_helper.h" 9 #include "chrome/browser/ui/sync/profile_signin_confirmation_helper.h"
10 #include "ui/views/controls/button/button.h" 10 #include "ui/views/controls/button/button.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 ui::ProfileSigninConfirmationDelegate* delegate); 44 ui::ProfileSigninConfirmationDelegate* delegate);
45 virtual ~ProfileSigninConfirmationDialogViews(); 45 virtual ~ProfileSigninConfirmationDialogViews();
46 46
47 // views::DialogDelegateView: 47 // views::DialogDelegateView:
48 virtual string16 GetWindowTitle() const OVERRIDE; 48 virtual string16 GetWindowTitle() const OVERRIDE;
49 virtual string16 GetDialogButtonLabel(ui::DialogButton button) const OVERRIDE; 49 virtual string16 GetDialogButtonLabel(ui::DialogButton button) const OVERRIDE;
50 virtual int GetDefaultDialogButton() const OVERRIDE; 50 virtual int GetDefaultDialogButton() const OVERRIDE;
51 virtual views::View* CreateExtraView() OVERRIDE; 51 virtual views::View* CreateExtraView() OVERRIDE;
52 virtual bool Accept() OVERRIDE; 52 virtual bool Accept() OVERRIDE;
53 virtual bool Cancel() OVERRIDE; 53 virtual bool Cancel() OVERRIDE;
54 virtual void OnClose() OVERRIDE; 54 virtual void OnClosed() OVERRIDE;
55 virtual ui::ModalType GetModalType() const OVERRIDE; 55 virtual ui::ModalType GetModalType() const OVERRIDE;
56 virtual void ViewHierarchyChanged( 56 virtual void ViewHierarchyChanged(
57 const ViewHierarchyChangedDetails& details) OVERRIDE; 57 const ViewHierarchyChangedDetails& details) OVERRIDE;
58 58
59 // views::StyledLabelListener: 59 // views::StyledLabelListener:
60 virtual void StyledLabelLinkClicked(const ui::Range& range, 60 virtual void StyledLabelLinkClicked(const ui::Range& range,
61 int event_flags) OVERRIDE; 61 int event_flags) OVERRIDE;
62 62
63 // views::ButtonListener: 63 // views::ButtonListener:
64 virtual void ButtonPressed(views::Button*, const ui::Event& event) OVERRIDE; 64 virtual void ButtonPressed(views::Button*, const ui::Event& event) OVERRIDE;
(...skipping 21 matching lines...) Expand all
86 // Whether the user should be prompted to create a new profile. 86 // Whether the user should be prompted to create a new profile.
87 bool prompt_for_new_profile_; 87 bool prompt_for_new_profile_;
88 88
89 // The button to continue with signin, if an extra button is required. 89 // The button to continue with signin, if an extra button is required.
90 views::LabelButton* continue_signin_button_; 90 views::LabelButton* continue_signin_button_;
91 91
92 DISALLOW_COPY_AND_ASSIGN(ProfileSigninConfirmationDialogViews); 92 DISALLOW_COPY_AND_ASSIGN(ProfileSigninConfirmationDialogViews);
93 }; 93 };
94 94
95 #endif // CHROME_BROWSER_UI_VIEWS_SYNC_PROFILE_SIGNIN_CONFIRMATION_DIALOG_VIEWS _H_ 95 #endif // CHROME_BROWSER_UI_VIEWS_SYNC_PROFILE_SIGNIN_CONFIRMATION_DIALOG_VIEWS _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698