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

Side by Side Diff: chrome/browser/printing/print_job_manager_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/print_job_manager.h"
6
7 #include "base/logging.h"
8 #include "chrome/browser/printing/print_job.h"
9 #include "chrome/browser/printing/printer_query.h"
10 #include "chrome/common/notification_type.h"
11
12 namespace printing {
13
14 PrintJobManager::PrintJobManager() {
15 NOTIMPLEMENTED();
16 }
17
18 PrintJobManager::~PrintJobManager() {
19 NOTIMPLEMENTED();
20 }
21
22 void PrintJobManager::OnQuit() {
23 NOTIMPLEMENTED();
24 }
25
26 void PrintJobManager::QueuePrinterQuery(PrinterQuery* job) {
27 NOTIMPLEMENTED();
28 }
29
30 void PrintJobManager::PopPrinterQuery(int document_cookie,
31 scoped_refptr<PrinterQuery>* job) {
32 NOTIMPLEMENTED();
33 }
34
35 void PrintJobManager::Observe(NotificationType type,
36 const NotificationSource& source,
37 const NotificationDetails& details) {
38 NOTIMPLEMENTED();
39 }
40
41 } // namespace printing
OLDNEW
« no previous file with comments | « chrome/browser/printing/print_job_linux.cc ('k') | chrome/browser/printing/print_view_manager_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698