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 <algorithm> | 7 #include <algorithm> |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/bind_helpers.h" | 11 #include "base/bind_helpers.h" |
12 #include "base/file_util.h" // for FileAccessProvider | 12 #include "base/file_util.h" // for FileAccessProvider |
13 #include "base/i18n/string_compare.h" | 13 #include "base/i18n/string_compare.h" |
14 #include "base/id_map.h" | 14 #include "base/id_map.h" |
15 #include "base/memory/scoped_vector.h" | 15 #include "base/memory/scoped_vector.h" |
16 #include "base/safe_strerror_posix.h" | 16 #include "base/safe_strerror_posix.h" |
17 #include "base/strings/string_number_conversions.h" | 17 #include "base/strings/string_number_conversions.h" |
18 #include "base/utf_string_conversions.h" | 18 #include "base/strings/utf_string_conversions.h" |
19 #include "base/values.h" | 19 #include "base/values.h" |
20 #include "chrome/browser/browser_process.h" | 20 #include "chrome/browser/browser_process.h" |
21 #include "chrome/browser/certificate_viewer.h" | 21 #include "chrome/browser/certificate_viewer.h" |
22 #include "chrome/browser/policy/browser_policy_connector.h" | 22 #include "chrome/browser/policy/browser_policy_connector.h" |
23 #include "chrome/browser/ui/certificate_dialogs.h" | 23 #include "chrome/browser/ui/certificate_dialogs.h" |
24 #include "chrome/browser/ui/chrome_select_file_policy.h" | 24 #include "chrome/browser/ui/chrome_select_file_policy.h" |
25 #include "chrome/browser/ui/crypto_module_password_dialog.h" | 25 #include "chrome/browser/ui/crypto_module_password_dialog.h" |
26 #include "content/public/browser/browser_thread.h" | 26 #include "content/public/browser/browser_thread.h" |
27 #include "content/public/browser/web_contents.h" | 27 #include "content/public/browser/web_contents.h" |
28 #include "content/public/browser/web_contents_view.h" | 28 #include "content/public/browser/web_contents_view.h" |
(...skipping 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1142 web_ui()->CallJavascriptFunction("CertificateManager.onCheckTpmTokenReady", | 1142 web_ui()->CallJavascriptFunction("CertificateManager.onCheckTpmTokenReady", |
1143 ready); | 1143 ready); |
1144 } | 1144 } |
1145 #endif | 1145 #endif |
1146 | 1146 |
1147 gfx::NativeWindow CertificateManagerHandler::GetParentWindow() const { | 1147 gfx::NativeWindow CertificateManagerHandler::GetParentWindow() const { |
1148 return web_ui()->GetWebContents()->GetView()->GetTopLevelNativeWindow(); | 1148 return web_ui()->GetWebContents()->GetView()->GetTopLevelNativeWindow(); |
1149 } | 1149 } |
1150 | 1150 |
1151 } // namespace options | 1151 } // namespace options |
OLD | NEW |