OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
102 void unionWith(const TimeRanges*); | 102 void unionWith(const TimeRanges*); |
103 | 103 |
104 unsigned length() const { return m_ranges.size(); } | 104 unsigned length() const { return m_ranges.size(); } |
105 double start(unsigned index, ExceptionState&) const; | 105 double start(unsigned index, ExceptionState&) const; |
106 double end(unsigned index, ExceptionState&) const; | 106 double end(unsigned index, ExceptionState&) const; |
107 | 107 |
108 void add(double start, double end); | 108 void add(double start, double end); |
109 | 109 |
110 bool contain(double time) const; | 110 bool contain(double time) const; |
111 | 111 |
112 double nearest(double time) const; | 112 double nearest(double time, double now) const; |
acolwell GONE FROM CHROMIUM
2014/09/11 22:24:39
nit: How about s/time/newPlaybackPosition/ and s/n
DaleCurtis
2014/09/11 22:40:01
I think you must like Java names, but done. :p
| |
113 | 113 |
114 void trace(Visitor*); | 114 void trace(Visitor*); |
115 | 115 |
116 private: | 116 private: |
117 TimeRanges() { } | 117 TimeRanges() { } |
118 | 118 |
119 TimeRanges(double start, double end); | 119 TimeRanges(double start, double end); |
120 | 120 |
121 void invert(); | 121 void invert(); |
122 | 122 |
123 WillBeHeapVector<Range> m_ranges; | 123 WillBeHeapVector<Range> m_ranges; |
124 }; | 124 }; |
125 | 125 |
126 } // namespace blink | 126 } // namespace blink |
127 | 127 |
128 WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::TimeRanges::Range); | 128 WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::TimeRanges::Range); |
129 | 129 |
130 #endif // TimeRanges_h | 130 #endif // TimeRanges_h |
OLD | NEW |