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

Side by Side Diff: chrome/browser/views/page_info_window.cc

Issue 115309: Remove even more ATL dependencies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/views/page_info_window.h" 5 #include "chrome/browser/views/page_info_window.h"
6 6
7 #include <cryptuiapi.h> 7 #include <cryptuiapi.h>
8 #pragma comment(lib, "cryptui.lib") 8 #pragma comment(lib, "cryptui.lib")
9 9
10 #include <atlbase.h>
11 #include <atlapp.h>
12 #include <atlmisc.h>
13
10 #include "app/l10n_util.h" 14 #include "app/l10n_util.h"
11 #include "app/resource_bundle.h" 15 #include "app/resource_bundle.h"
12 #include "app/win_util.h" 16 #include "app/win_util.h"
13 #include "base/string_util.h" 17 #include "base/string_util.h"
14 #include "base/time_format.h" 18 #include "base/time_format.h"
15 #include "chrome/browser/browser_process.h" 19 #include "chrome/browser/browser_process.h"
16 #include "chrome/browser/cert_store.h" 20 #include "chrome/browser/cert_store.h"
17 #include "chrome/browser/history/history.h" 21 #include "chrome/browser/history/history.h"
18 #include "chrome/browser/profile.h" 22 #include "chrome/browser/profile.h"
19 #include "chrome/browser/ssl/ssl_manager.h" 23 #include "chrome/browser/ssl/ssl_manager.h"
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 // Search the cert store that 'cert' is in when building the cert chain. 680 // Search the cert store that 'cert' is in when building the cert chain.
677 HCERTSTORE cert_store = view_info.pCertContext->hCertStore; 681 HCERTSTORE cert_store = view_info.pCertContext->hCertStore;
678 view_info.cStores = 1; 682 view_info.cStores = 1;
679 view_info.rghStores = &cert_store; 683 view_info.rghStores = &cert_store;
680 BOOL properties_changed; 684 BOOL properties_changed;
681 685
682 // This next call blocks but keeps processing windows messages, making it 686 // This next call blocks but keeps processing windows messages, making it
683 // modal to the browser window. 687 // modal to the browser window.
684 BOOL rv = ::CryptUIDlgViewCertificate(&view_info, &properties_changed); 688 BOOL rv = ::CryptUIDlgViewCertificate(&view_info, &properties_changed);
685 } 689 }
OLDNEW
« no previous file with comments | « chrome/browser/views/options/passwords_page_view.cc ('k') | chrome/browser/views/select_profile_dialog.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698