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

Side by Side Diff: chrome/browser/ui/webui/certificate_viewer_ui.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/certificate_viewer_ui.h" 5 #include "chrome/browser/ui/webui/certificate_viewer_ui.h"
6 6
7 #include "chrome/browser/profiles/profile.h" 7 #include "chrome/browser/profiles/profile.h"
8 #include "chrome/browser/ui/webui/certificate_viewer_webui.h" 8 #include "chrome/browser/ui/webui/certificate_viewer_webui.h"
9 #include "chrome/common/url_constants.h" 9 #include "chrome/common/url_constants.h"
10 #include "chrome/grit/browser_resources.h"
10 #include "chrome/grit/generated_resources.h" 11 #include "chrome/grit/generated_resources.h"
12 #include "components/strings/grit/components_strings.h"
11 #include "content/public/browser/render_view_host.h" 13 #include "content/public/browser/render_view_host.h"
12 #include "content/public/browser/web_contents.h" 14 #include "content/public/browser/web_contents.h"
13 #include "content/public/browser/web_ui.h" 15 #include "content/public/browser/web_ui.h"
14 #include "content/public/browser/web_ui_data_source.h" 16 #include "content/public/browser/web_ui_data_source.h"
15 #include "grit/browser_resources.h"
16 #include "grit/components_strings.h"
17 #include "ui/web_dialogs/web_dialog_delegate.h" 17 #include "ui/web_dialogs/web_dialog_delegate.h"
18 18
19 namespace { 19 namespace {
20 20
21 content::WebUIDataSource* GetWebUIDataSource(const std::string& host) { 21 content::WebUIDataSource* GetWebUIDataSource(const std::string& host) {
22 content::WebUIDataSource* html_source = 22 content::WebUIDataSource* html_source =
23 content::WebUIDataSource::Create(host); 23 content::WebUIDataSource::Create(host);
24 24
25 // Localized strings. 25 // Localized strings.
26 html_source->AddLocalizedString("general", IDS_CERT_INFO_GENERAL_TAB_LABEL); 26 html_source->AddLocalizedString("general", IDS_CERT_INFO_GENERAL_TAB_LABEL);
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 : ConstrainedWebDialogUI(web_ui) { 80 : ConstrainedWebDialogUI(web_ui) {
81 // Set up the chrome://view-cert source. 81 // Set up the chrome://view-cert source.
82 Profile* profile = Profile::FromWebUI(web_ui); 82 Profile* profile = Profile::FromWebUI(web_ui);
83 content::WebUIDataSource::Add( 83 content::WebUIDataSource::Add(
84 profile, 84 profile,
85 GetWebUIDataSource(chrome::kChromeUICertificateViewerHost)); 85 GetWebUIDataSource(chrome::kChromeUICertificateViewerHost));
86 } 86 }
87 87
88 CertificateViewerUI::~CertificateViewerUI() { 88 CertificateViewerUI::~CertificateViewerUI() {
89 } 89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698