Merge master into stdweb-eventloop-2

Update the internal APIs to match the new API changes
This commit is contained in:
Ryan Goldstein
2019-06-01 13:21:50 -07:00
86 changed files with 10095 additions and 7707 deletions

View File

@@ -81,11 +81,11 @@ impl<T> EventLoop<T> {
}
}
pub fn get_available_monitors(&self) -> VecDequeIter<MonitorHandle> {
pub fn available_monitors(&self) -> VecDequeIter<MonitorHandle> {
VecDeque::new().into_iter()
}
pub fn get_primary_monitor(&self) -> MonitorHandle {
pub fn primary_monitor(&self) -> MonitorHandle {
MonitorHandle
}