Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: chrome/browser/printing/print_job.cc

Issue 149212: Move printing related stuff to the root printing project from the browser pro... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/timer.h" 8 #include "base/timer.h"
9 #include "chrome/browser/printing/print_job_worker.h" 9 #include "chrome/browser/printing/print_job_worker.h"
10 #include "chrome/browser/printing/printed_document.h"
11 #include "chrome/browser/printing/printed_page.h"
12 #include "chrome/common/notification_service.h" 10 #include "chrome/common/notification_service.h"
11 #include "printing/printed_document.h"
12 #include "printing/printed_page.h"
13 13
14 #ifdef _MSC_VER 14 #ifdef _MSC_VER
15 #pragma warning(disable:4355) // 'this' : used in base member initializer list 15 #pragma warning(disable:4355) // 'this' : used in base member initializer list
16 #endif 16 #endif
17 17
18 using base::TimeDelta; 18 using base::TimeDelta;
19 19
20 namespace printing { 20 namespace printing {
21 21
22 PrintJob::PrintJob() 22 PrintJob::PrintJob()
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 342
343 PrintedDocument* JobEventDetails::document() const { 343 PrintedDocument* JobEventDetails::document() const {
344 return document_; 344 return document_;
345 } 345 }
346 346
347 PrintedPage* JobEventDetails::page() const { 347 PrintedPage* JobEventDetails::page() const {
348 return page_; 348 return page_;
349 } 349 }
350 350
351 } // namespace printing 351 } // namespace printing
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698