OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Apple Inc. | 2 * Copyright (C) 2009 Apple Inc. |
3 * Copyright (C) 2009 Google Inc. | 3 * Copyright (C) 2009 Google Inc. |
4 * All rights reserved. | 4 * All rights reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 static bool paintMediaSubtitlesIcon(const LayoutObject&, | 81 static bool paintMediaSubtitlesIcon(const LayoutObject&, |
82 const PaintInfo&, | 82 const PaintInfo&, |
83 const IntRect&); | 83 const IntRect&); |
84 static bool paintMediaOverflowMenu(const LayoutObject&, | 84 static bool paintMediaOverflowMenu(const LayoutObject&, |
85 const PaintInfo&, | 85 const PaintInfo&, |
86 const IntRect&); | 86 const IntRect&); |
87 static bool paintMediaDownloadIcon(const LayoutObject&, | 87 static bool paintMediaDownloadIcon(const LayoutObject&, |
88 const PaintInfo&, | 88 const PaintInfo&, |
89 const IntRect&); | 89 const IntRect&); |
90 static void adjustMediaSliderThumbSize(ComputedStyle&); | 90 static void adjustMediaSliderThumbSize(ComputedStyle&); |
| 91 static bool paintMediaRemotingDisableButton(const LayoutObject&, |
| 92 const PaintInfo&, |
| 93 const IntRect&); |
91 | 94 |
92 private: | 95 private: |
93 static void adjustMediaSliderThumbPaintSize(const IntRect&, | 96 static void adjustMediaSliderThumbPaintSize(const IntRect&, |
94 const ComputedStyle&, | 97 const ComputedStyle&, |
95 IntRect& rectOut); | 98 IntRect& rectOut); |
96 static void paintMediaSliderInternal(const LayoutObject&, | 99 static void paintMediaSliderInternal(const LayoutObject&, |
97 const PaintInfo&, | 100 const PaintInfo&, |
98 const IntRect&); | 101 const IntRect&); |
99 }; | 102 }; |
100 | 103 |
101 } // namespace blink | 104 } // namespace blink |
102 | 105 |
103 #endif // MediaControlsPainter_h | 106 #endif // MediaControlsPainter_h |
OLD | NEW |