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

Unified Diff: chrome/browser/chromeos/printing/cups_print_job.cc

Issue 2435303003: [CUPS] Implement the Print Job notification. (Closed)
Patch Set: Bug fix. Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/printing/cups_print_job.cc
diff --git a/chrome/browser/chromeos/printing/cups_print_job.cc b/chrome/browser/chromeos/printing/cups_print_job.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7e41e2c42c4a9db4b2c462f89237f6771a0e575e
--- /dev/null
+++ b/chrome/browser/chromeos/printing/cups_print_job.cc
@@ -0,0 +1,39 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/chromeos/printing/cups_print_job.h"
+
+#include "base/strings/string_number_conversions.h"
+
+namespace chromeos {
+
+CUPSPrintJob::CUPSPrintJob(const std::string& printer_id,
+ int job_id,
+ const std::string& document_title,
+ int total_page_number)
+ : printer_(Printer(printer_id)),
+ job_id_(job_id),
+ document_title_(document_title),
+ total_page_number_(total_page_number) {}
stevenjb 2016/10/26 19:59:57 Can we eliminate this and just make callers do the
xdai1 2016/10/26 22:55:18 Done.
+
+CUPSPrintJob::CUPSPrintJob(const Printer& printer,
+ int job_id,
+ const std::string& document_title,
+ int total_page_number)
+ : printer_(printer),
+ job_id_(job_id),
+ document_title_(document_title),
+ total_page_number_(total_page_number) {}
+
+CUPSPrintJob::~CUPSPrintJob() {}
+
+std::string CUPSPrintJob::GetId() const {
+ return printer_.id() + base::IntToString(job_id_);
+}
+
+Printer* CUPSPrintJob::GetPrinter() {
+ return &printer_;
+}
+
+} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698