diff options
author | kmadhusu@chromium.org <kmadhusu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-05 00:12:53 +0000 |
---|---|---|
committer | kmadhusu@chromium.org <kmadhusu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-05 00:12:53 +0000 |
commit | 7868ecabafc39bcd917276899742be136cca2ae3 (patch) | |
tree | b008edd73081d0df868eae216e18cc6dc56d382d /printing/printing_context.h | |
parent | f41067c4ff04b9552c48e89169b28cf078c1a8ba (diff) | |
download | chromium_src-7868ecabafc39bcd917276899742be136cca2ae3.zip chromium_src-7868ecabafc39bcd917276899742be136cca2ae3.tar.gz chromium_src-7868ecabafc39bcd917276899742be136cca2ae3.tar.bz2 |
(1) Hook up the print button to send the pages to the default printer for printing without displaying a native dialog.
(2) Made code changes to accept a print page range from the user and to print only those specified pages.
BUG=none
TEST=Enable print preview on mac, provide a valid page range and make sure print button in print preview works.
Review URL: http://codereview.chromium.org/6533006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77003 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/printing_context.h')
-rw-r--r-- | printing/printing_context.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/printing/printing_context.h b/printing/printing_context.h index 6d51f02..d7d5016 100644 --- a/printing/printing_context.h +++ b/printing/printing_context.h @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// 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. @@ -47,6 +47,10 @@ class PrintingContext { // default device settings. virtual Result UseDefaultSettings() = 0; + // Update print settings. As of now we are updating the page range settings. + // In the future, update other print job settings. + virtual Result UpdatePrintSettings(const PageRanges& ranges) = 0; + // Initializes with predefined settings. virtual Result InitWithSettings(const PrintSettings& settings) = 0; |