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

Side by Side Diff: printing/print_settings_initializer_mac.cc

Issue 13322003: Update the remaining references to sys_string_conversions.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "printing/print_settings_initializer_mac.h" 5 #include "printing/print_settings_initializer_mac.h"
6 6
7 #include "base/sys_string_conversions.h" 7 #include "base/strings/sys_string_conversions.h"
8 #include "printing/print_settings.h" 8 #include "printing/print_settings.h"
9 9
10 namespace printing { 10 namespace printing {
11 11
12 // static 12 // static
13 void PrintSettingsInitializerMac::InitPrintSettings( 13 void PrintSettingsInitializerMac::InitPrintSettings(
14 PMPrinter printer, 14 PMPrinter printer,
15 PMPageFormat page_format, 15 PMPageFormat page_format,
16 const PageRanges& new_ranges, 16 const PageRanges& new_ranges,
17 bool print_selection_only, 17 bool print_selection_only,
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 (page_rect.top - paper_rect.top), 61 (page_rect.top - paper_rect.top),
62 (page_rect.right - page_rect.left), 62 (page_rect.right - page_rect.left),
63 (page_rect.bottom - page_rect.top)); 63 (page_rect.bottom - page_rect.top));
64 64
65 print_settings->SetPrinterPrintableArea(physical_size_device_units, 65 print_settings->SetPrinterPrintableArea(physical_size_device_units,
66 printable_area_device_units, 66 printable_area_device_units,
67 72); 67 72);
68 } 68 }
69 69
70 } // namespace printing 70 } // namespace printing
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698