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

Unified Diff: chrome/browser/cocoa/page_info_window_mac.mm

Issue 159521: Implementation of the page info dialog on Linux Gtk. (Closed)
Patch Set: Fix build Created 11 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/gtk/browser_window_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/page_info_window_mac.mm
diff --git a/chrome/browser/cocoa/page_info_window_mac.mm b/chrome/browser/cocoa/page_info_window_mac.mm
index 2112059f4876a470936aac5c2b11f2c340568137..a31f0b9502557b2e9e94f1f1b13c05ad7ce9cbca 100644
--- a/chrome/browser/cocoa/page_info_window_mac.mm
+++ b/chrome/browser/cocoa/page_info_window_mac.mm
@@ -94,7 +94,7 @@ void PageInfoWindowMac::LayoutSections() {
[controller_ setIdentityImg:[controller_ goodImg]];
else
[controller_ setIdentityImg:[controller_ badImg]];
- [controller_ setIdentityMsg:base::SysWideToNSString(
+ [controller_ setIdentityMsg:base::SysUTF16ToNSString(
identity_section.description)];
// Connection section.
@@ -105,7 +105,7 @@ void PageInfoWindowMac::LayoutSections() {
else
[controller_ setConnectionImg:[controller_ badImg]];
[controller_ setConnectionMsg:
- base::SysWideToNSString(connection_section.description)];
+ base::SysUTF16ToNSString(connection_section.description)];
if (model_.GetSectionCount() > 2) {
// We have the history info.
@@ -117,7 +117,7 @@ void PageInfoWindowMac::LayoutSections() {
[controller_ setHistoryImg:[controller_ badImg]];
[controller_ setHistoryMsg:
- base::SysWideToNSString(history_section.description)];
+ base::SysUTF16ToNSString(history_section.description)];
}
// By default, assume that we don't have certificate information to show.
« no previous file with comments | « no previous file | chrome/browser/gtk/browser_window_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698