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

Side by Side Diff: ui/snapshot/snapshot_android.cc

Issue 2428383006: Decouple VR Shell DPR and CSS size from Physical Displays. (Closed)
Patch Set: Address bshe comments + minor fix Created 4 years 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 | « ui/android/java/src/org/chromium/ui/base/WindowAndroid.java ('k') | no next file » | 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "ui/snapshot/snapshot.h" 5 #include "ui/snapshot/snapshot.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 25 matching lines...) Expand all
36 } 36 }
37 37
38 static void MakeAsyncCopyRequest( 38 static void MakeAsyncCopyRequest(
39 gfx::NativeWindow window, 39 gfx::NativeWindow window,
40 const gfx::Rect& source_rect, 40 const gfx::Rect& source_rect,
41 const cc::CopyOutputRequest::CopyOutputRequestCallback& callback) { 41 const cc::CopyOutputRequest::CopyOutputRequestCallback& callback) {
42 std::unique_ptr<cc::CopyOutputRequest> request = 42 std::unique_ptr<cc::CopyOutputRequest> request =
43 cc::CopyOutputRequest::CreateBitmapRequest(callback); 43 cc::CopyOutputRequest::CreateBitmapRequest(callback);
44 44
45 const display::Display& display = 45 const display::Display& display =
46 display::Screen::GetScreen()->GetPrimaryDisplay(); 46 display::Screen::GetScreen()->GetDisplayNearestWindow(window);
47 float device_scale_factor = display.device_scale_factor(); 47 float device_scale_factor = display.device_scale_factor();
48 gfx::Rect source_rect_in_pixel = 48 gfx::Rect source_rect_in_pixel =
49 gfx::ScaleToEnclosingRect(source_rect, device_scale_factor); 49 gfx::ScaleToEnclosingRect(source_rect, device_scale_factor);
50 50
51 // Account for the toolbar offset. 51 // Account for the toolbar offset.
52 gfx::Vector2dF offset_in_pixel = 52 gfx::Vector2dF offset_in_pixel =
53 gfx::ScaleVector2d(window->content_offset(), device_scale_factor); 53 gfx::ScaleVector2d(window->content_offset(), device_scale_factor);
54 gfx::Rect adjusted_source_rect( 54 gfx::Rect adjusted_source_rect(
55 gfx::ToRoundedPoint( 55 gfx::ToRoundedPoint(
56 gfx::PointF(source_rect_in_pixel.x() + offset_in_pixel.x(), 56 gfx::PointF(source_rect_in_pixel.x() + offset_in_pixel.x(),
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 void GrabViewSnapshotAsync( 90 void GrabViewSnapshotAsync(
91 gfx::NativeView view, 91 gfx::NativeView view,
92 const gfx::Rect& source_rect, 92 const gfx::Rect& source_rect,
93 scoped_refptr<base::TaskRunner> background_task_runner, 93 scoped_refptr<base::TaskRunner> background_task_runner,
94 const GrabWindowSnapshotAsyncPNGCallback& callback) { 94 const GrabWindowSnapshotAsyncPNGCallback& callback) {
95 GrabWindowSnapshotAsync( 95 GrabWindowSnapshotAsync(
96 view->GetWindowAndroid(), source_rect, background_task_runner, callback); 96 view->GetWindowAndroid(), source_rect, background_task_runner, callback);
97 } 97 }
98 98
99 } // namespace ui 99 } // namespace ui
OLDNEW
« no previous file with comments | « ui/android/java/src/org/chromium/ui/base/WindowAndroid.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698