diff --git a/support/hololens/ServoApp/BrowserPage.cpp b/support/hololens/ServoApp/BrowserPage.cpp index b940d42019c..6653ebb233a 100644 --- a/support/hololens/ServoApp/BrowserPage.cpp +++ b/support/hololens/ServoApp/BrowserPage.cpp @@ -143,4 +143,11 @@ void BrowserPage::OnURLEdited(IInspectable const &, } } +void BrowserPage::OnMediaControlsPlayClicked( + Windows::Foundation::IInspectable const &, + Windows::UI::Xaml::RoutedEventArgs const &) {} +void BrowserPage::OnMediaControlsPauseClicked( + Windows::Foundation::IInspectable const &, + Windows::UI::Xaml::RoutedEventArgs const &) {} + } // namespace winrt::ServoApp::implementation diff --git a/support/hololens/ServoApp/BrowserPage.h b/support/hololens/ServoApp/BrowserPage.h index f5fe8b3566b..f0f1d49c482 100644 --- a/support/hololens/ServoApp/BrowserPage.h +++ b/support/hololens/ServoApp/BrowserPage.h @@ -41,6 +41,10 @@ public: Windows::UI::Xaml::RoutedEventArgs const &); void OnXRPkgWarningDismissClick(Windows::Foundation::IInspectable const &, Windows::UI::Xaml::RoutedEventArgs const &); + void OnMediaControlsPlayClicked(Windows::Foundation::IInspectable const &, + Windows::UI::Xaml::RoutedEventArgs const &); + void OnMediaControlsPauseClicked(Windows::Foundation::IInspectable const &, + Windows::UI::Xaml::RoutedEventArgs const &); private: void BindServoEvents(); diff --git a/support/hololens/ServoApp/BrowserPage.xaml b/support/hololens/ServoApp/BrowserPage.xaml index c0b2839da7d..8d68ecf533b 100644 --- a/support/hololens/ServoApp/BrowserPage.xaml +++ b/support/hololens/ServoApp/BrowserPage.xaml @@ -137,5 +137,14 @@ + + + + + + + + +