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

Side by Side Diff: chrome/renderer/print_web_view_helper.cc

Issue 2807029: Move GetPageSizeAndMarginsInPoints from linux code to generic code. (Closed)
Patch Set: s/params/default_params/ Created 10 years, 5 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
« no previous file with comments | « chrome/renderer/print_web_view_helper.h ('k') | chrome/renderer/print_web_view_helper_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "chrome/renderer/print_web_view_helper.h" 5 #include "chrome/renderer/print_web_view_helper.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "chrome/common/render_messages.h" 9 #include "chrome/common/render_messages.h"
10 #include "chrome/renderer/render_view.h" 10 #include "chrome/renderer/render_view.h"
11 #include "gfx/codec/jpeg_codec.h" 11 #include "gfx/codec/jpeg_codec.h"
12 #include "grit/generated_resources.h" 12 #include "grit/generated_resources.h"
13 #include "printing/units.h" 13 #include "printing/units.h"
14 #include "third_party/WebKit/WebKit/chromium/public/WebConsoleMessage.h" 14 #include "third_party/WebKit/WebKit/chromium/public/WebConsoleMessage.h"
15 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" 15 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h"
16 #include "third_party/WebKit/WebKit/chromium/public/WebRect.h" 16 #include "third_party/WebKit/WebKit/chromium/public/WebRect.h"
17 #include "third_party/WebKit/WebKit/chromium/public/WebScreenInfo.h" 17 #include "third_party/WebKit/WebKit/chromium/public/WebScreenInfo.h"
18 #include "third_party/WebKit/WebKit/chromium/public/WebSize.h" 18 #include "third_party/WebKit/WebKit/chromium/public/WebSize.h"
19 #include "third_party/WebKit/WebKit/chromium/public/WebURLRequest.h" 19 #include "third_party/WebKit/WebKit/chromium/public/WebURLRequest.h"
20 #include "webkit/glue/webkit_glue.h" 20 #include "webkit/glue/webkit_glue.h"
21 21
22 using printing::ConvertPixelsToPoint;
23 using printing::ConvertPixelsToPointDouble;
24 using printing::ConvertUnit;
22 using WebKit::WebConsoleMessage; 25 using WebKit::WebConsoleMessage;
23 using WebKit::WebFrame; 26 using WebKit::WebFrame;
24 using WebKit::WebRect; 27 using WebKit::WebRect;
28 using WebKit::WebSize;
25 using WebKit::WebScreenInfo; 29 using WebKit::WebScreenInfo;
26 using WebKit::WebString; 30 using WebKit::WebString;
27 using WebKit::WebURLRequest; 31 using WebKit::WebURLRequest;
28 using WebKit::WebView; 32 using WebKit::WebView;
29 33
30 PrepareFrameAndViewForPrint::PrepareFrameAndViewForPrint( 34 PrepareFrameAndViewForPrint::PrepareFrameAndViewForPrint(
31 const ViewMsg_Print_Params& print_params, 35 const ViewMsg_Print_Params& print_params,
32 WebFrame* frame, 36 WebFrame* frame,
33 WebView* web_view) 37 WebView* web_view)
34 : frame_(frame), web_view_(web_view), expected_pages_count_(0), 38 : frame_(frame), web_view_(web_view), expected_pages_count_(0),
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 } 342 }
339 343
340 int32 PrintWebViewHelper::routing_id() { 344 int32 PrintWebViewHelper::routing_id() {
341 return render_view_->routing_id(); 345 return render_view_->routing_id();
342 } 346 }
343 347
344 void PrintWebViewHelper::didStopLoading() { 348 void PrintWebViewHelper::didStopLoading() {
345 DCHECK(print_pages_params_.get() != NULL); 349 DCHECK(print_pages_params_.get() != NULL);
346 PrintPages(*print_pages_params_.get(), print_web_view_->mainFrame()); 350 PrintPages(*print_pages_params_.get(), print_web_view_->mainFrame());
347 } 351 }
352
353 void PrintWebViewHelper::GetPageSizeAndMarginsInPoints(
354 WebFrame* frame,
355 int page_index,
356 const ViewMsg_Print_Params& default_params,
357 double* content_width_in_points,
358 double* content_height_in_points,
359 double* margin_top_in_points,
360 double* margin_right_in_points,
361 double* margin_bottom_in_points,
362 double* margin_left_in_points) {
363 int dpi = static_cast<int>(default_params.dpi);
364 #if defined(OS_MACOSX)
365 // On the Mac, the printable area is in points, don't do any scaling based
366 // on dpi.
367 dpi = printing::kPointsPerInch;
368 #endif
369
370 WebSize page_size_in_pixels(
371 ConvertUnit(default_params.page_size.width(),
372 dpi, printing::kPixelsPerInch),
373 ConvertUnit(default_params.page_size.height(),
374 dpi, printing::kPixelsPerInch));
375 int margin_top_in_pixels = ConvertUnit(
376 default_params.margin_top,
377 dpi, printing::kPixelsPerInch);
378 int margin_right_in_pixels = ConvertUnit(
379 default_params.page_size.width()
380 - default_params.printable_size.width() - default_params.margin_left,
381 dpi, printing::kPixelsPerInch);
382 int margin_bottom_in_pixels = ConvertUnit(
383 default_params.page_size.height()
384 - default_params.printable_size.height() - default_params.margin_top,
385 dpi, printing::kPixelsPerInch);
386 int margin_left_in_pixels = ConvertUnit(
387 default_params.margin_left,
388 dpi, printing::kPixelsPerInch);
389
390 if (frame) {
391 frame->pageSizeAndMarginsInPixels(page_index,
392 page_size_in_pixels,
393 margin_top_in_pixels,
394 margin_right_in_pixels,
395 margin_bottom_in_pixels,
396 margin_left_in_pixels);
397 }
398
399 *content_width_in_points = ConvertPixelsToPoint(page_size_in_pixels.width
400 - margin_left_in_pixels
401 - margin_right_in_pixels);
402 *content_height_in_points = ConvertPixelsToPoint(page_size_in_pixels.height
403 - margin_top_in_pixels
404 - margin_bottom_in_pixels);
405
406 // Invalid page size and/or margins. We just use the default setting.
407 if (*content_width_in_points < 1.0 || *content_height_in_points < 1.0) {
408 GetPageSizeAndMarginsInPoints(NULL,
409 page_index,
410 default_params,
411 content_width_in_points,
412 content_height_in_points,
413 margin_top_in_points,
414 margin_right_in_points,
415 margin_bottom_in_points,
416 margin_left_in_points);
417 return;
418 }
419
420 if (margin_top_in_points)
421 *margin_top_in_points =
422 ConvertPixelsToPointDouble(margin_top_in_pixels);
423 if (margin_right_in_points)
424 *margin_right_in_points =
425 ConvertPixelsToPointDouble(margin_right_in_pixels);
426 if (margin_bottom_in_points)
427 *margin_bottom_in_points =
428 ConvertPixelsToPointDouble(margin_bottom_in_pixels);
429 if (margin_left_in_points)
430 *margin_left_in_points =
431 ConvertPixelsToPointDouble(margin_left_in_pixels);
432 }
OLDNEW
« no previous file with comments | « chrome/renderer/print_web_view_helper.h ('k') | chrome/renderer/print_web_view_helper_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698