| Index: chrome/browser/printing/print_view_manager.cc
|
| diff --git a/chrome/browser/printing/print_view_manager.cc b/chrome/browser/printing/print_view_manager.cc
|
| index 43a760c763db32625ae82911571a3a63e02c596f..e0f4ef986745068424a2641ae0f63d37e3f96977 100644
|
| --- a/chrome/browser/printing/print_view_manager.cc
|
| +++ b/chrome/browser/printing/print_view_manager.cc
|
| @@ -17,7 +17,6 @@
|
| #include "chrome/common/print_messages.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/web_contents.h"
|
| -#include "printing/print_destination_interface.h"
|
|
|
| using content::BrowserThread;
|
|
|
| @@ -73,16 +72,6 @@ bool PrintViewManager::AdvancedPrintNow() {
|
| }
|
| }
|
|
|
| -bool PrintViewManager::PrintToDestination() {
|
| - // TODO(mad): Remove this once we can send user metrics from the metro driver.
|
| - // crbug.com/142330
|
| - UMA_HISTOGRAM_ENUMERATION("Metro.Print", 0, 2);
|
| - // TODO(mad): Use a passed in destination interface instead.
|
| - g_browser_process->print_job_manager()->queue()->SetDestination(
|
| - printing::CreatePrintDestination());
|
| - return PrintNowInternal(new PrintMsg_PrintPages(routing_id()));
|
| -}
|
| -
|
| bool PrintViewManager::PrintPreviewNow(bool selection_only) {
|
| // Users can send print commands all they want and it is beyond
|
| // PrintViewManager's control. Just ignore the extra commands.
|
|
|