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

Side by Side Diff: chrome/browser/ui/views/ssl_client_certificate_selector.h

Issue 109623005: Cleanup: Remove deprecated version of views::CreateDialogFrameView(). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: nits Created 6 years, 10 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_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
6 #define CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ 6 #define CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 // SSLClientAuthObserver implementation: 54 // SSLClientAuthObserver implementation:
55 virtual void OnCertSelectedByNotification() OVERRIDE; 55 virtual void OnCertSelectedByNotification() OVERRIDE;
56 56
57 // DialogDelegateView: 57 // DialogDelegateView:
58 virtual bool CanResize() const OVERRIDE; 58 virtual bool CanResize() const OVERRIDE;
59 virtual base::string16 GetWindowTitle() const OVERRIDE; 59 virtual base::string16 GetWindowTitle() const OVERRIDE;
60 virtual void DeleteDelegate() OVERRIDE; 60 virtual void DeleteDelegate() OVERRIDE;
61 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE; 61 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE;
62 virtual bool Cancel() OVERRIDE; 62 virtual bool Cancel() OVERRIDE;
63 virtual bool Accept() OVERRIDE; 63 virtual bool Accept() OVERRIDE;
64 virtual views::NonClientFrameView* CreateNonClientFrameView(
65 views::Widget* widget) OVERRIDE;
66 virtual views::View* GetInitiallyFocusedView() OVERRIDE; 64 virtual views::View* GetInitiallyFocusedView() OVERRIDE;
67 virtual views::View* CreateExtraView() OVERRIDE; 65 virtual views::View* CreateExtraView() OVERRIDE;
68 virtual ui::ModalType GetModalType() const OVERRIDE; 66 virtual ui::ModalType GetModalType() const OVERRIDE;
69 67
70 // views::ButtonListener: 68 // views::ButtonListener:
71 virtual void ButtonPressed(views::Button* sender, 69 virtual void ButtonPressed(views::Button* sender,
72 const ui::Event& event) OVERRIDE; 70 const ui::Event& event) OVERRIDE;
73 71
74 // views::TableViewObserver: 72 // views::TableViewObserver:
75 virtual void OnSelectionChanged() OVERRIDE; 73 virtual void OnSelectionChanged() OVERRIDE;
(...skipping 10 matching lines...) Expand all
86 content::WebContents* web_contents_; 84 content::WebContents* web_contents_;
87 85
88 views::Widget* window_; 86 views::Widget* window_;
89 views::TableView* table_; 87 views::TableView* table_;
90 views::LabelButton* view_cert_button_; 88 views::LabelButton* view_cert_button_;
91 89
92 DISALLOW_COPY_AND_ASSIGN(SSLClientCertificateSelector); 90 DISALLOW_COPY_AND_ASSIGN(SSLClientCertificateSelector);
93 }; 91 };
94 92
95 #endif // CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ 93 #endif // CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/pdf_password_dialog.cc ('k') | chrome/browser/ui/views/ssl_client_certificate_selector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698