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

Unified Diff: printing/printing_context_win.cc

Issue 5998010: Use the existing PRINTPAGERANGE rather than allocating a new one.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 | « no previous file | printing/printing_context_win_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/printing_context_win.cc
===================================================================
--- printing/printing_context_win.cc (revision 71680)
+++ printing/printing_context_win.cc (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 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.
@@ -6,7 +6,6 @@
#include <winspool.h>
-#include "base/file_util.h"
#include "base/i18n/file_util_icu.h"
#include "base/i18n/time_formatting.h"
#include "base/message_loop.h"
@@ -188,12 +187,11 @@
dialog_options.Flags |= PD_NOPAGENUMS;
}
- {
- if ((*print_dialog_func_)(&dialog_options) != S_OK) {
- ResetSettings();
- callback->Run(FAILED);
- }
+ if ((*print_dialog_func_)(&dialog_options) != S_OK) {
+ ResetSettings();
+ callback->Run(FAILED);
}
+
// TODO(maruel): Support PD_PRINTTOFILE.
callback->Run(ParseDialogResultEx(dialog_options));
}
« no previous file with comments | « no previous file | printing/printing_context_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698