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

Unified Diff: chrome/browser/ui/browser.cc

Issue 8479042: UI polish for certificate viewer (Closed) Base URL: /usr/local/google/home/bshe/NoTouchChromium/../TouchChromium/src/@trunk
Patch Set: Edit comments. Created 9 years, 1 month 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 | « chrome/browser/ui/browser.h ('k') | chrome/browser/ui/browser_dialogs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/browser.cc
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
index 3f65a096c3a2f3558b083b1138d56e7ddac98cbc..d07f6bc859259811ee048206b165c23da92d563e 100644
--- a/chrome/browser/ui/browser.cc
+++ b/chrome/browser/ui/browser.cc
@@ -1218,7 +1218,8 @@ void Browser::CloseTabContents(TabContents* contents) {
gfx::NativeWindow Browser::BrowserShowHtmlDialog(
HtmlDialogUIDelegate* delegate,
- gfx::NativeWindow parent_window) {
+ gfx::NativeWindow parent_window,
+ DialogStyle style) {
#if defined(OS_CHROMEOS)
// For Chrome OS, first try to parent the dialog over the current browser --
// it's likely to be maximized onscreen. If it isn't tabbed (e.g. it's a
@@ -1233,7 +1234,7 @@ gfx::NativeWindow Browser::BrowserShowHtmlDialog(
if (!parent_window)
parent_window = window_->GetNativeHandle();
- return browser::ShowHtmlDialog(parent_window, profile_, delegate);
+ return browser::ShowHtmlDialog(parent_window, profile_, delegate, style);
}
void Browser::BrowserRenderWidgetShowing() {
« no previous file with comments | « chrome/browser/ui/browser.h ('k') | chrome/browser/ui/browser_dialogs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698