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

Side by Side Diff: printing/page_size_margins.cc

Issue 8564040: Revert 110035 - Print Preview: Making margin selection sticky (part 2/2) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « printing/page_size_margins.h ('k') | printing/printing.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "printing/page_size_margins.h"
6
7 #include "base/logging.h"
8 #include "base/values.h"
9 #include "printing/print_job_constants.h"
10
11 namespace printing {
12
13 void getCustomMarginsFromJobSettings(const base::DictionaryValue& settings,
14 PageSizeMargins* page_size_margins) {
15 DictionaryValue* custom_margins;
16 if (!settings.GetDictionary(kSettingMarginsCustom, &custom_margins) ||
17 !custom_margins->GetDouble(kSettingMarginTop,
18 &page_size_margins->margin_top) ||
19 !custom_margins->GetDouble(kSettingMarginBottom,
20 &page_size_margins->margin_bottom) ||
21 !custom_margins->GetDouble(kSettingMarginLeft,
22 &page_size_margins->margin_left) ||
23 !custom_margins->GetDouble(kSettingMarginRight,
24 &page_size_margins->margin_right)) {
25 NOTREACHED();
26 }
27 }
28
29 } // namespace printing
OLDNEW
« no previous file with comments | « printing/page_size_margins.h ('k') | printing/printing.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698