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

Unified Diff: net/ssl/client_cert_store_impl_win.cc

Issue 12680003: net: split net/ssl out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: net/ssl/client_cert_store_impl_win.cc
diff --git a/net/base/client_cert_store_impl_win.cc b/net/ssl/client_cert_store_impl_win.cc
similarity index 99%
rename from net/base/client_cert_store_impl_win.cc
rename to net/ssl/client_cert_store_impl_win.cc
index 9098076d0b4021c5da70f05af18f10c77eacd3dd..776cf19f3323e746ba7724ed4f143f59c6e59250 100644
--- a/net/base/client_cert_store_impl_win.cc
+++ b/net/ssl/client_cert_store_impl_win.cc
@@ -2,15 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "net/base/client_cert_store_impl.h"
+#include "net/ssl/client_cert_store_impl.h"
#include <algorithm>
#include <string>
#define SECURITY_WIN32 // Needs to be defined before including security.h
#include <windows.h>
-#include <wincrypt.h>
#include <security.h>
wtc 2013/03/12 23:14:37 In general, be careful about moving system headers
Paweł Hajdan Jr. 2013/03/13 22:59:52 Done.
+#include <wincrypt.h>
#include "base/logging.h"
#include "crypto/scoped_capi_types.h"

Powered by Google App Engine
This is Rietveld 408576698