| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 #ifndef MediaRemotingInterstitial_h | 5 #ifndef MediaRemotingInterstitial_h |
| 6 #define MediaRemotingInterstitial_h | 6 #define MediaRemotingInterstitial_h |
| 7 | 7 |
| 8 #include "core/html/HTMLDivElement.h" | 8 #include "core/html/HTMLDivElement.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 bool should_be_visible_ = false; | 53 bool should_be_visible_ = false; |
| 54 | 54 |
| 55 TaskRunnerTimer<MediaRemotingInterstitial> toggle_insterstitial_timer_; | 55 TaskRunnerTimer<MediaRemotingInterstitial> toggle_insterstitial_timer_; |
| 56 Member<HTMLVideoElement> video_element_; | 56 Member<HTMLVideoElement> video_element_; |
| 57 Member<HTMLImageElement> background_image_; | 57 Member<HTMLImageElement> background_image_; |
| 58 Member<MediaRemotingExitButtonElement> exit_button_; | 58 Member<MediaRemotingExitButtonElement> exit_button_; |
| 59 Member<MediaRemotingCastIconElement> cast_icon_; | 59 Member<MediaRemotingCastIconElement> cast_icon_; |
| 60 Member<MediaRemotingCastMessageElement> cast_text_message_; | 60 Member<MediaRemotingCastMessageElement> cast_text_message_; |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 } // namespace | 63 } // namespace blink |
| 64 | 64 |
| 65 #endif // MediaRemotingInterstitial_h | 65 #endif // MediaRemotingInterstitial_h |
| OLD | NEW |