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

Side by Side Diff: chrome/browser/ui/gtk/ssl_client_certificate_selector.cc

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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) 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 #include "chrome/browser/ssl_client_certificate_selector.h" 5 #include "chrome/browser/ssl_client_certificate_selector.h"
6 6
7 #include <gtk/gtk.h> 7 #include <gtk/gtk.h>
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/i18n/time_formatting.h" 12 #include "base/i18n/time_formatting.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/nss_util.h" 14 #include "base/nss_util.h"
15 #include "base/utf_string_conversions.h" 15 #include "base/utf_string_conversions.h"
16 #include "chrome/browser/certificate_viewer.h" 16 #include "chrome/browser/certificate_viewer.h"
17 #include "chrome/browser/ssl/ssl_client_auth_handler.h" 17 #include "chrome/browser/ssl/ssl_client_auth_handler.h"
18 #include "chrome/browser/tab_contents/tab_contents.h" 18 #include "chrome/browser/tab_contents/tab_contents.h"
19 #include "chrome/browser/ui/crypto_module_password_dialog.h" 19 #include "chrome/browser/ui/crypto_module_password_dialog.h"
20 #include "chrome/browser/ui/gtk/constrained_window_gtk.h" 20 #include "chrome/browser/ui/gtk/constrained_window_gtk.h"
21 #include "chrome/browser/ui/gtk/gtk_util.h" 21 #include "chrome/browser/ui/gtk/gtk_util.h"
22 #include "chrome/browser/ui/gtk/owned_widget_gtk.h" 22 #include "chrome/browser/ui/gtk/owned_widget_gtk.h"
23 #include "chrome/common/net/x509_certificate_model.h" 23 #include "chrome/common/net/x509_certificate_model.h"
24 #include "gfx/native_widget_types.h"
25 #include "grit/generated_resources.h" 24 #include "grit/generated_resources.h"
26 #include "net/base/x509_certificate.h" 25 #include "net/base/x509_certificate.h"
27 #include "ui/base/gtk/gtk_signal.h" 26 #include "ui/base/gtk/gtk_signal.h"
28 #include "ui/base/l10n/l10n_util.h" 27 #include "ui/base/l10n/l10n_util.h"
28 #include "ui/gfx/native_widget_types.h"
29 29
30 namespace { 30 namespace {
31 31
32 enum { 32 enum {
33 RESPONSE_SHOW_CERT_INFO = 1, 33 RESPONSE_SHOW_CERT_INFO = 1,
34 }; 34 };
35 35
36 /////////////////////////////////////////////////////////////////////////////// 36 ///////////////////////////////////////////////////////////////////////////////
37 // SSLClientCertificateSelector 37 // SSLClientCertificateSelector
38 38
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 void ShowSSLClientCertificateSelector( 369 void ShowSSLClientCertificateSelector(
370 TabContents* parent, 370 TabContents* parent,
371 net::SSLCertRequestInfo* cert_request_info, 371 net::SSLCertRequestInfo* cert_request_info,
372 SSLClientAuthHandler* delegate) { 372 SSLClientAuthHandler* delegate) {
373 (new SSLClientCertificateSelector(parent, 373 (new SSLClientCertificateSelector(parent,
374 cert_request_info, 374 cert_request_info,
375 delegate))->Show(); 375 delegate))->Show();
376 } 376 }
377 377
378 } // namespace browser 378 } // namespace browser
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/options/url_picker_dialog_gtk.cc ('k') | chrome/browser/ui/gtk/status_bubble_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698