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

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

Issue 118162: Reduce header dependencies in base/ (Closed)
Patch Set: Created 11 years, 6 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
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 "chrome/browser/printing/print_job_worker.h" 9 #include "chrome/browser/printing/print_job_worker.h"
9 #include "chrome/browser/printing/printed_document.h" 10 #include "chrome/browser/printing/printed_document.h"
10 #include "chrome/browser/printing/printed_page.h" 11 #include "chrome/browser/printing/printed_page.h"
11 #include "chrome/common/notification_service.h" 12 #include "chrome/common/notification_service.h"
12 13
13 #ifdef _MSC_VER 14 #ifdef _MSC_VER
14 #pragma warning(disable:4355) // 'this' : used in base member initializer list 15 #pragma warning(disable:4355) // 'this' : used in base member initializer list
15 #endif 16 #endif
16 17
17 using base::TimeDelta; 18 using base::TimeDelta;
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 364
364 PrintedDocument* JobEventDetails::document() const { 365 PrintedDocument* JobEventDetails::document() const {
365 return document_; 366 return document_;
366 } 367 }
367 368
368 PrintedPage* JobEventDetails::page() const { 369 PrintedPage* JobEventDetails::page() const {
369 return page_; 370 return page_;
370 } 371 }
371 372
372 } // namespace printing 373 } // namespace printing
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698