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

Side by Side Diff: chrome/browser/ui/webui/options/certificate_manager_handler.cc

Issue 2276823003: Change many chrome/browser includes to use qualified paths. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 3 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
OLDNEW
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> 7 #include <errno.h>
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 14 matching lines...) Expand all
25 #include "base/values.h" 25 #include "base/values.h"
26 #include "build/build_config.h" 26 #include "build/build_config.h"
27 #include "chrome/browser/browser_process.h" 27 #include "chrome/browser/browser_process.h"
28 #include "chrome/browser/certificate_viewer.h" 28 #include "chrome/browser/certificate_viewer.h"
29 #include "chrome/browser/profiles/profile.h" 29 #include "chrome/browser/profiles/profile.h"
30 #include "chrome/browser/ui/certificate_dialogs.h" 30 #include "chrome/browser/ui/certificate_dialogs.h"
31 #include "chrome/browser/ui/chrome_select_file_policy.h" 31 #include "chrome/browser/ui/chrome_select_file_policy.h"
32 #include "chrome/browser/ui/crypto_module_password_dialog_nss.h" 32 #include "chrome/browser/ui/crypto_module_password_dialog_nss.h"
33 #include "chrome/browser/ui/webui/certificate_viewer_webui.h" 33 #include "chrome/browser/ui/webui/certificate_viewer_webui.h"
34 #include "chrome/grit/generated_resources.h" 34 #include "chrome/grit/generated_resources.h"
35 #include "components/strings/grit/components_strings.h"
35 #include "content/public/browser/browser_thread.h" 36 #include "content/public/browser/browser_thread.h"
36 #include "content/public/browser/web_contents.h" 37 #include "content/public/browser/web_contents.h"
37 #include "grit/components_strings.h"
38 #include "net/base/crypto_module.h" 38 #include "net/base/crypto_module.h"
39 #include "net/base/net_errors.h" 39 #include "net/base/net_errors.h"
40 #include "net/cert/x509_certificate.h" 40 #include "net/cert/x509_certificate.h"
41 #include "net/der/input.h" 41 #include "net/der/input.h"
42 #include "net/der/parser.h" 42 #include "net/der/parser.h"
43 #include "ui/base/l10n/l10n_util.h" 43 #include "ui/base/l10n/l10n_util.h"
44 44
45 #if defined(OS_CHROMEOS) 45 #if defined(OS_CHROMEOS)
46 #include "chrome/browser/chromeos/policy/user_network_configuration_updater.h" 46 #include "chrome/browser/chromeos/policy/user_network_configuration_updater.h"
47 #include "chrome/browser/chromeos/policy/user_network_configuration_updater_fact ory.h" 47 #include "chrome/browser/chromeos/policy/user_network_configuration_updater_fact ory.h"
(...skipping 1180 matching lines...) Expand 10 before | Expand all | Expand 10 after
1228 web_ui()->CallJavascriptFunctionUnsafe("CertificateImportErrorOverlay.show", 1228 web_ui()->CallJavascriptFunctionUnsafe("CertificateImportErrorOverlay.show",
1229 title_value, error_value, 1229 title_value, error_value,
1230 cert_error_list); 1230 cert_error_list);
1231 } 1231 }
1232 1232
1233 gfx::NativeWindow CertificateManagerHandler::GetParentWindow() const { 1233 gfx::NativeWindow CertificateManagerHandler::GetParentWindow() const {
1234 return web_ui()->GetWebContents()->GetTopLevelNativeWindow(); 1234 return web_ui()->GetWebContents()->GetTopLevelNativeWindow();
1235 } 1235 }
1236 1236
1237 } // namespace options 1237 } // namespace options
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698