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

Unified Diff: chrome/browser/printing/print_dialog_cloud.cc

Issue 4146015: Minimum UI change for Cloud Print dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unit test. Created 10 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 | « no previous file | chrome/browser/printing/print_dialog_cloud_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/printing/print_dialog_cloud.cc
diff --git a/chrome/browser/printing/print_dialog_cloud.cc b/chrome/browser/printing/print_dialog_cloud.cc
index 3fdad4bc0489c90c9fdab2f67b8240962792bd4b..89b750c08fa7ea397f53dee8e6010f5f40b8d701 100644
--- a/chrome/browser/printing/print_dialog_cloud.cc
+++ b/chrome/browser/printing/print_dialog_cloud.cc
@@ -425,7 +425,7 @@ bool CloudPrintHtmlDialogDelegate::IsDialogModal() const {
}
std::wstring CloudPrintHtmlDialogDelegate::GetDialogTitle() const {
- return l10n_util::GetString(IDS_CLOUD_PRINT_TITLE);
+ return std::wstring();
}
GURL CloudPrintHtmlDialogDelegate::GetDialogContentURL() const {
@@ -497,7 +497,7 @@ PrintDialogCloud::PrintDialogCloud(const FilePath& path_to_pdf)
// contents, and take the screen size into account.
HtmlDialogUIDelegate* dialog_delegate =
new internal_cloud_print_helpers::CloudPrintHtmlDialogDelegate(
- path_to_pdf, 500, 400, std::string(), print_job_title);
+ path_to_pdf, 497, 354, std::string(), print_job_title);
browser_->BrowserShowHtmlDialog(dialog_delegate, NULL);
}
« no previous file with comments | « no previous file | chrome/browser/printing/print_dialog_cloud_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698