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

Unified Diff: printing/printing_context_mac.cc

Issue 268036: Implement the basic OS-level printing mechanics on Mac (Closed)
Patch Set: Address review comments Created 11 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: printing/printing_context_mac.cc
diff --git a/printing/printing_context_mac.cc b/printing/printing_context_mac.cc
deleted file mode 100644
index fcc51f71d0c5d018c764850306301b020d1cb7a1..0000000000000000000000000000000000000000
--- a/printing/printing_context_mac.cc
+++ /dev/null
@@ -1,117 +0,0 @@
-// Copyright (c) 2009 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/printing_context.h"
-
-#include "base/logging.h"
-
-namespace printing {
-
-PrintingContext::PrintingContext()
- :
-#ifndef NDEBUG
- page_number_(-1),
-#endif
- dialog_box_dismissed_(false),
- in_print_job_(false),
- abort_printing_(false) {
-}
-
-PrintingContext::~PrintingContext() {
- ResetSettings();
-}
-
-
-PrintingContext::Result PrintingContext::UseDefaultSettings() {
- DCHECK(!in_print_job_);
-
- NOTIMPLEMENTED();
-
- return FAILED;
-}
-
-PrintingContext::Result PrintingContext::InitWithSettings(
- const PrintSettings& settings) {
- DCHECK(!in_print_job_);
- settings_ = settings;
-
- NOTIMPLEMENTED();
-
- return FAILED;
-}
-
-void PrintingContext::ResetSettings() {
-#ifndef NDEBUG
- page_number_ = -1;
-#endif
- dialog_box_dismissed_ = false;
- abort_printing_ = false;
- in_print_job_ = false;
-}
-
-PrintingContext::Result PrintingContext::NewDocument(
- const std::wstring& document_name) {
- DCHECK(!in_print_job_);
-
- NOTIMPLEMENTED();
-
-#ifndef NDEBUG
- page_number_ = 0;
-#endif
-
- return FAILED;
-}
-
-PrintingContext::Result PrintingContext::NewPage() {
- if (abort_printing_)
- return CANCEL;
- DCHECK(in_print_job_);
-
- NOTIMPLEMENTED();
-
-#ifndef NDEBUG
- ++page_number_;
-#endif
-
- return FAILED;
-}
-
-PrintingContext::Result PrintingContext::PageDone() {
- if (abort_printing_)
- return CANCEL;
- DCHECK(in_print_job_);
-
- NOTIMPLEMENTED();
-
- return FAILED;
-}
-
-PrintingContext::Result PrintingContext::DocumentDone() {
- if (abort_printing_)
- return CANCEL;
- DCHECK(in_print_job_);
-
- NOTIMPLEMENTED();
-
- ResetSettings();
- return FAILED;
-}
-
-void PrintingContext::Cancel() {
- abort_printing_ = true;
- in_print_job_ = false;
-
- NOTIMPLEMENTED();
-}
-
-void PrintingContext::DismissDialog() {
- NOTIMPLEMENTED();
-}
-
-PrintingContext::Result PrintingContext::OnError() {
- ResetSettings();
- return abort_printing_ ? CANCEL : FAILED;
-}
-
-} // namespace printing

Powered by Google App Engine
This is Rietveld 408576698