OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1281 LocalFrame* frame = node->GetDocument().GetFrame(); | 1281 LocalFrame* frame = node->GetDocument().GetFrame(); |
1282 return frame->View()->ContentsToRootFrame(point_in_root_frame); | 1282 return frame->View()->ContentsToRootFrame(point_in_root_frame); |
1283 } | 1283 } |
1284 return WebRect(); | 1284 return WebRect(); |
1285 } | 1285 } |
1286 | 1286 |
1287 WebRect WebViewImpl::WidenRectWithinPageBounds(const WebRect& source, | 1287 WebRect WebViewImpl::WidenRectWithinPageBounds(const WebRect& source, |
1288 int target_margin, | 1288 int target_margin, |
1289 int minimum_margin) { | 1289 int minimum_margin) { |
1290 WebSize max_size; | 1290 WebSize max_size; |
1291 if (MainFrame()) | |
1292 max_size = MainFrame()->ContentsSize(); | |
1293 IntSize scroll_offset; | 1291 IntSize scroll_offset; |
1294 if (MainFrame()) { | 1292 if (MainFrame()) { |
1295 // TODO(lukasza): https://crbug.com/734209: The DCHECK below holds now, but | 1293 // TODO(lukasza): https://crbug.com/734209: The DCHECK below holds now, but |
1296 // only because all of the callers don't support OOPIFs and exit early if | 1294 // only because all of the callers don't support OOPIFs and exit early if |
1297 // the main frame is not local. | 1295 // the main frame is not local. |
1298 DCHECK(MainFrame()->IsWebLocalFrame()); | 1296 DCHECK(MainFrame()->IsWebLocalFrame()); |
| 1297 max_size = MainFrame()->ToWebLocalFrame()->ContentsSize(); |
1299 scroll_offset = MainFrame()->ToWebLocalFrame()->GetScrollOffset(); | 1298 scroll_offset = MainFrame()->ToWebLocalFrame()->GetScrollOffset(); |
1300 } | 1299 } |
1301 int left_margin = target_margin; | 1300 int left_margin = target_margin; |
1302 int right_margin = target_margin; | 1301 int right_margin = target_margin; |
1303 | 1302 |
1304 const int absolute_source_x = source.x + scroll_offset.Width(); | 1303 const int absolute_source_x = source.x + scroll_offset.Width(); |
1305 if (left_margin > absolute_source_x) { | 1304 if (left_margin > absolute_source_x) { |
1306 left_margin = absolute_source_x; | 1305 left_margin = absolute_source_x; |
1307 right_margin = std::max(left_margin, minimum_margin); | 1306 right_margin = std::max(left_margin, minimum_margin); |
1308 } | 1307 } |
(...skipping 2816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4125 if (focused_frame->LocalFrameRoot() != MainFrameImpl()->GetFrame()) | 4124 if (focused_frame->LocalFrameRoot() != MainFrameImpl()->GetFrame()) |
4126 return nullptr; | 4125 return nullptr; |
4127 return focused_frame; | 4126 return focused_frame; |
4128 } | 4127 } |
4129 | 4128 |
4130 LocalFrame* WebViewImpl::FocusedLocalFrameAvailableForIme() const { | 4129 LocalFrame* WebViewImpl::FocusedLocalFrameAvailableForIme() const { |
4131 return ime_accept_events_ ? FocusedLocalFrameInWidget() : nullptr; | 4130 return ime_accept_events_ ? FocusedLocalFrameInWidget() : nullptr; |
4132 } | 4131 } |
4133 | 4132 |
4134 } // namespace blink | 4133 } // namespace blink |
OLD | NEW |