| OLD | NEW |
| 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/print_preview/print_preview_ui.h" | 5 #include "chrome/browser/ui/webui/print_preview/print_preview_ui.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 | 8 |
| 9 #include "base/id_map.h" | 9 #include "base/id_map.h" |
| 10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.h" |
| (...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 595 if (!delegate) | 595 if (!delegate) |
| 596 return; | 596 return; |
| 597 delegate->GetWebDialogDelegate()->OnDialogClosed(std::string()); | 597 delegate->GetWebDialogDelegate()->OnDialogClosed(std::string()); |
| 598 delegate->OnDialogCloseFromWebUI(); | 598 delegate->OnDialogCloseFromWebUI(); |
| 599 } | 599 } |
| 600 | 600 |
| 601 void PrintPreviewUI::OnReloadPrintersList() { | 601 void PrintPreviewUI::OnReloadPrintersList() { |
| 602 web_ui()->CallJavascriptFunction("reloadPrintersList"); | 602 web_ui()->CallJavascriptFunction("reloadPrintersList"); |
| 603 } | 603 } |
| 604 | 604 |
| 605 void PrintPreviewUI::OnPrintPreviewScalingDisabled() { | 605 void PrintPreviewUI::OnSetOptionsFromDocument( |
| 606 web_ui()->CallJavascriptFunction("printScalingDisabledForSourcePDF"); | 606 const PrintHostMsg_SetOptionsFromDocument_Params& params) { |
| 607 // Notify WebUI that print scaling is disabled |
| 608 if (params.print_scaling_disabled) |
| 609 web_ui()->CallJavascriptFunction("printScalingDisabledForSourcePDF"); |
| 607 } | 610 } |
| 608 | 611 |
| 609 // static | 612 // static |
| 610 void PrintPreviewUI::SetDelegateForTesting(TestingDelegate* delegate) { | 613 void PrintPreviewUI::SetDelegateForTesting(TestingDelegate* delegate) { |
| 611 g_testing_delegate = delegate; | 614 g_testing_delegate = delegate; |
| 612 } | 615 } |
| OLD | NEW |