diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-07-12 08:10:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-12 08:10:31 -0400 |
commit | df73c71fb18c144abedd6889c34dd1031ffcbb8e (patch) | |
tree | a5d41e6bf6a78b390fb7e0b2bb1f5ed22c936c64 /components/embedder_traits/lib.rs | |
parent | 026e550d3536115b23ad794e08b3c93147913dfb (diff) | |
parent | 30ea2827209c3c6982c4552c7d3f1193883025b1 (diff) | |
download | servo-df73c71fb18c144abedd6889c34dd1031ffcbb8e.tar.gz servo-df73c71fb18c144abedd6889c34dd1031ffcbb8e.zip |
Auto merge of #23516 - pcwalton:webrenderup, r=pcwalton,jdm
Upgrade WebRender
This is against an old Servo because I can't build current Servo due to compile errors in RNG crates. I verified that it starts up.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix #23516
- [x] There are tests for these changes
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23516)
<!-- Reviewable:end -->
Diffstat (limited to 'components/embedder_traits/lib.rs')
-rw-r--r-- | components/embedder_traits/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/embedder_traits/lib.rs b/components/embedder_traits/lib.rs index ac427c42995..7622f0e5822 100644 --- a/components/embedder_traits/lib.rs +++ b/components/embedder_traits/lib.rs @@ -19,7 +19,7 @@ use keyboard_types::KeyboardEvent; use msg::constellation_msg::{InputMethodType, PipelineId, TopLevelBrowsingContextId}; use servo_url::ServoUrl; use std::fmt::{Debug, Error, Formatter}; -use webrender_api::{DeviceIntPoint, DeviceIntSize}; +use webrender_api::units::{DeviceIntPoint, DeviceIntSize}; /// A cursor for the window. This is different from a CSS cursor (see /// `CursorKind`) in that it has no `Auto` value. |