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

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

Issue 593037: Remove the temporary scaffolding stubs. (Closed)
Patch Set: fixes Created 10 years, 10 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
(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/printer_query.h"
6
7 #include "base/logging.h"
8 #include "base/task.h"
9 #include "chrome/browser/printing/print_job_worker.h"
10
11 namespace printing {
12
13 PrinterQuery::PrinterQuery() : ui_message_loop_(NULL) {
14 NOTIMPLEMENTED();
15 }
16
17 PrinterQuery::~PrinterQuery() {
18 NOTIMPLEMENTED();
19 }
20
21 void PrinterQuery::GetSettingsDone(const PrintSettings& new_settings,
22 PrintingContext::Result result) {
23 NOTIMPLEMENTED();
24 }
25
26 PrintJobWorker* PrinterQuery::DetachWorker(PrintJobWorkerOwner* new_owner) {
27 NOTIMPLEMENTED();
28 return NULL;
29 }
30
31 void PrinterQuery::GetSettings(GetSettingsAskParam ask_user_for_settings,
32 gfx::NativeWindow parent_window,
33 int expected_page_count,
34 bool has_selection,
35 CancelableTask* callback) {
36 NOTIMPLEMENTED();
37 }
38
39 void PrinterQuery::StopWorker() {
40 NOTIMPLEMENTED();
41 }
42
43 bool PrinterQuery::is_print_dialog_box_shown() const {
44 NOTIMPLEMENTED();
45 return false;
46 }
47
48 bool PrinterQuery::is_callback_pending() const {
49 NOTIMPLEMENTED();
50 return false;
51 }
52
53 bool PrinterQuery::is_valid() const {
54 NOTIMPLEMENTED();
55 return false;
56 }
57
58 } // namespace printing
OLDNEW
« no previous file with comments | « chrome/browser/printing/print_view_manager_linux.cc ('k') | chrome/browser/renderer_host/resource_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698