| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #if defined(ENABLE_PRINT_PREVIEW) |
| 6 |
| 5 #include "chrome/browser/task_manager/printing_information.h" | 7 #include "chrome/browser/task_manager/printing_information.h" |
| 6 | 8 |
| 7 #include "base/macros.h" | 9 #include "base/macros.h" |
| 8 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| 9 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 10 #include "chrome/browser/browser_process.h" | 12 #include "chrome/browser/browser_process.h" |
| 11 #include "chrome/browser/favicon/favicon_utils.h" | 13 #include "chrome/browser/favicon/favicon_utils.h" |
| 12 #include "chrome/browser/printing/background_printing_manager.h" | 14 #include "chrome/browser/printing/background_printing_manager.h" |
| 13 #include "chrome/browser/printing/print_preview_dialog_controller.h" | 15 #include "chrome/browser/printing/print_preview_dialog_controller.h" |
| 14 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 printing::PrintPreviewDialogController::GetInstance()->ForEachPreviewDialog( | 110 printing::PrintPreviewDialogController::GetInstance()->ForEachPreviewDialog( |
| 109 callback); | 111 callback); |
| 110 } | 112 } |
| 111 | 113 |
| 112 std::unique_ptr<RendererResource> PrintingInformation::MakeResource( | 114 std::unique_ptr<RendererResource> PrintingInformation::MakeResource( |
| 113 WebContents* web_contents) { | 115 WebContents* web_contents) { |
| 114 return std::unique_ptr<RendererResource>(new PrintingResource(web_contents)); | 116 return std::unique_ptr<RendererResource>(new PrintingResource(web_contents)); |
| 115 } | 117 } |
| 116 | 118 |
| 117 } // namespace task_manager | 119 } // namespace task_manager |
| 120 |
| 121 #endif // defined(ENABLE_PRINT_PREVIEW) |
| OLD | NEW |