OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/printing/print_job_manager.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 #include "chrome/browser/printing/print_job.h" |
| 9 #include "chrome/browser/printing/printer_query.h" |
| 10 #include "chrome/common/notification_type.h" |
| 11 |
| 12 namespace printing { |
| 13 |
| 14 PrintJobManager::PrintJobManager() { |
| 15 NOTIMPLEMENTED(); |
| 16 } |
| 17 |
| 18 PrintJobManager::~PrintJobManager() { |
| 19 NOTIMPLEMENTED(); |
| 20 } |
| 21 |
| 22 void PrintJobManager::OnQuit() { |
| 23 NOTIMPLEMENTED(); |
| 24 } |
| 25 |
| 26 void PrintJobManager::QueuePrinterQuery(PrinterQuery* job) { |
| 27 NOTIMPLEMENTED(); |
| 28 } |
| 29 |
| 30 void PrintJobManager::PopPrinterQuery(int document_cookie, |
| 31 scoped_refptr<PrinterQuery>* job) { |
| 32 NOTIMPLEMENTED(); |
| 33 } |
| 34 |
| 35 void PrintJobManager::Observe(NotificationType type, |
| 36 const NotificationSource& source, |
| 37 const NotificationDetails& details) { |
| 38 NOTIMPLEMENTED(); |
| 39 } |
| 40 |
| 41 } // namespace printing |
OLD | NEW |