| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 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/printing/print_job.h" | 5 #include "chrome/browser/printing/print_job.h" |
| 6 | 6 |
| 7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
| 8 #include "base/thread_restrictions.h" | 8 #include "base/threading/thread_restrictions.h" |
| 9 #include "base/timer.h" | 9 #include "base/timer.h" |
| 10 #include "chrome/browser/printing/print_job_worker.h" | 10 #include "chrome/browser/printing/print_job_worker.h" |
| 11 #include "chrome/common/notification_service.h" | 11 #include "chrome/common/notification_service.h" |
| 12 #include "printing/printed_document.h" | 12 #include "printing/printed_document.h" |
| 13 #include "printing/printed_page.h" | 13 #include "printing/printed_page.h" |
| 14 | 14 |
| 15 using base::TimeDelta; | 15 using base::TimeDelta; |
| 16 | 16 |
| 17 namespace printing { | 17 namespace printing { |
| 18 | 18 |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 | 359 |
| 360 PrintedDocument* JobEventDetails::document() const { | 360 PrintedDocument* JobEventDetails::document() const { |
| 361 return document_; | 361 return document_; |
| 362 } | 362 } |
| 363 | 363 |
| 364 PrintedPage* JobEventDetails::page() const { | 364 PrintedPage* JobEventDetails::page() const { |
| 365 return page_; | 365 return page_; |
| 366 } | 366 } |
| 367 | 367 |
| 368 } // namespace printing | 368 } // namespace printing |
| OLD | NEW |