Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 #include "chrome/browser/ui/webui/options/certificate_manager_handler.h" | 5 #include "chrome/browser/ui/webui/options/certificate_manager_handler.h" |
| 6 | 6 |
| 7 #include <errno.h> | |
|
Lei Zhang
2015/11/06 23:30:44
I'm in the blank line between C and C++ #includes
Mostyn Bramley-Moore
2015/11/06 23:38:38
Done.
| |
| 7 #include <algorithm> | 8 #include <algorithm> |
| 8 #include <map> | 9 #include <map> |
| 9 | 10 |
| 10 #include "base/bind.h" | 11 #include "base/bind.h" |
| 11 #include "base/bind_helpers.h" | 12 #include "base/bind_helpers.h" |
| 12 #include "base/files/file_util.h" // for FileAccessProvider | 13 #include "base/files/file_util.h" // for FileAccessProvider |
| 13 #include "base/i18n/string_compare.h" | 14 #include "base/i18n/string_compare.h" |
| 14 #include "base/id_map.h" | 15 #include "base/id_map.h" |
| 15 #include "base/memory/scoped_vector.h" | 16 #include "base/memory/scoped_vector.h" |
| 16 #include "base/posix/safe_strerror.h" | 17 #include "base/posix/safe_strerror.h" |
| (...skipping 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1153 title_value, | 1154 title_value, |
| 1154 error_value, | 1155 error_value, |
| 1155 cert_error_list); | 1156 cert_error_list); |
| 1156 } | 1157 } |
| 1157 | 1158 |
| 1158 gfx::NativeWindow CertificateManagerHandler::GetParentWindow() const { | 1159 gfx::NativeWindow CertificateManagerHandler::GetParentWindow() const { |
| 1159 return web_ui()->GetWebContents()->GetTopLevelNativeWindow(); | 1160 return web_ui()->GetWebContents()->GetTopLevelNativeWindow(); |
| 1160 } | 1161 } |
| 1161 | 1162 |
| 1162 } // namespace options | 1163 } // namespace options |
| OLD | NEW |