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

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

Issue 1967773004: Fix include path for moved thread_task_runner_handle.h header in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393013 Created 4 years, 7 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_view_manager_base.h" 5 #include "chrome/browser/printing/print_view_manager_base.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/auto_reset.h" 10 #include "base/auto_reset.h"
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/location.h" 12 #include "base/location.h"
13 #include "base/single_thread_task_runner.h" 13 #include "base/single_thread_task_runner.h"
14 #include "base/strings/utf_string_conversions.h" 14 #include "base/strings/utf_string_conversions.h"
15 #include "base/thread_task_runner_handle.h" 15 #include "base/threading/thread_task_runner_handle.h"
16 #include "base/timer/timer.h" 16 #include "base/timer/timer.h"
17 #include "build/build_config.h" 17 #include "build/build_config.h"
18 #include "chrome/browser/browser_process.h" 18 #include "chrome/browser/browser_process.h"
19 #include "chrome/browser/chrome_notification_types.h" 19 #include "chrome/browser/chrome_notification_types.h"
20 #include "chrome/browser/printing/print_job.h" 20 #include "chrome/browser/printing/print_job.h"
21 #include "chrome/browser/printing/print_job_manager.h" 21 #include "chrome/browser/printing/print_job_manager.h"
22 #include "chrome/browser/printing/printer_query.h" 22 #include "chrome/browser/printing/printer_query.h"
23 #include "chrome/browser/profiles/profile.h" 23 #include "chrome/browser/profiles/profile.h"
24 #include "chrome/browser/ui/simple_message_box.h" 24 #include "chrome/browser/ui/simple_message_box.h"
25 #include "chrome/common/pref_names.h" 25 #include "chrome/common/pref_names.h"
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 scoped_refptr<PrinterQuery> printer_query; 528 scoped_refptr<PrinterQuery> printer_query;
529 printer_query = queue_->PopPrinterQuery(cookie); 529 printer_query = queue_->PopPrinterQuery(cookie);
530 if (!printer_query.get()) 530 if (!printer_query.get())
531 return; 531 return;
532 BrowserThread::PostTask( 532 BrowserThread::PostTask(
533 BrowserThread::IO, FROM_HERE, 533 BrowserThread::IO, FROM_HERE,
534 base::Bind(&PrinterQuery::StopWorker, printer_query.get())); 534 base::Bind(&PrinterQuery::StopWorker, printer_query.get()));
535 } 535 }
536 536
537 } // namespace printing 537 } // namespace printing
OLDNEW
« no previous file with comments | « chrome/browser/printing/print_preview_pdf_generated_browsertest.cc ('k') | chrome/browser/process_resource_usage.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698