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

Unified Diff: printing/backend/print_backend_chromeos.cc

Issue 7038028: Initial support for cloudprint in print preview (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Resolved new conflictswq Created 9 years, 5 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
« no previous file with comments | « chrome/renderer/print_web_view_helper.cc ('k') | printing/print_job_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/backend/print_backend_chromeos.cc
diff --git a/printing/backend/print_backend_chromeos.cc b/printing/backend/print_backend_chromeos.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c61bc1d69eb735cd7a857d4a4d61c5b5de767e09
--- /dev/null
+++ b/printing/backend/print_backend_chromeos.cc
@@ -0,0 +1,60 @@
+// Copyright (c) 2011 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 "printing/backend/print_backend.h"
+
+#include "base/logging.h"
+
+namespace printing {
+
+// Provides a stubbed out PrintBackend implementation for use on ChromeOS.
+class PrintBackendChromeOS : public PrintBackend {
+ public:
+ PrintBackendChromeOS();
+ virtual ~PrintBackendChromeOS() {}
+
+ // PrintBackend implementation.
+ virtual bool EnumeratePrinters(PrinterList* printer_list);
+
+ virtual std::string GetDefaultPrinterName();
+
+ virtual bool GetPrinterCapsAndDefaults(const std::string& printer_name,
+ PrinterCapsAndDefaults* printer_info);
+
+ virtual bool IsValidPrinter(const std::string& printer_name);
+
+ private:
+};
+
+PrintBackendChromeOS::PrintBackendChromeOS() {}
+
+bool PrintBackendChromeOS::EnumeratePrinters(PrinterList* printer_list) {
+ return true;
+}
+
+
+
+bool PrintBackendChromeOS::GetPrinterCapsAndDefaults(
+ const std::string& printer_name,
+ PrinterCapsAndDefaults* printer_info) {
+ NOTREACHED();
+ return false;
+}
+
+std::string PrintBackendChromeOS::GetDefaultPrinterName() {
+ return std::string();
+}
+
+bool PrintBackendChromeOS::IsValidPrinter(const std::string& printer_name) {
+ NOTREACHED();
+ return true;
+}
+
+scoped_refptr<PrintBackend> PrintBackend::CreateInstance(
+ const base::DictionaryValue* print_backend_settings) {
+ return new PrintBackendChromeOS();
+}
+
+} // namespace printing
+
« no previous file with comments | « chrome/renderer/print_web_view_helper.cc ('k') | printing/print_job_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698