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

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

Issue 2435303003: [CUPS] Implement the Print Job notification. (Closed)
Patch Set: Fix the compile warning. Created 4 years, 1 month 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..e28ee1d25bfb2449ef3015c149c2be595a416524
--- /dev/null
+++ b/chrome/browser/chromeos/printing/cups_print_job.cc
@@ -0,0 +1,26 @@
+// 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 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::GetUniqueId() const {
+ return printer_.id() + base::IntToString(job_id_);
+}
+
+} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/printing/cups_print_job.h ('k') | chrome/browser/chromeos/printing/cups_print_job_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698