electron/atom/browser/ui/certificate_trust_win.cc

19 lines
565 B
C++
Raw Normal View History

2017-04-06 01:01:58 +00:00
// Copyright (c) 2013 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "atom/browser/ui/certificate_trust.h"
#include <windows.h> // windows.h must be included first
namespace certificate_trust {
2017-04-06 01:09:58 +00:00
void ShowCertificateTrust(atom::NativeWindow* parent_window,
const scoped_refptr<net::X509Certificate>& cert,
const std::string& message,
const ShowTrustCallback& callback) {
}
2017-04-06 01:01:58 +00:00
} // namespace certificate_trust