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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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) const; |
113 | 113 |
114 void trace(Visitor*); | 114 void trace(Visitor*); |
115 | 115 |
116 private: | 116 private: |
117 TimeRanges() | 117 TimeRanges() { } |
118 { | |
119 ScriptWrappable::init(this); | |
120 } | |
121 | 118 |
122 TimeRanges(double start, double end); | 119 TimeRanges(double start, double end); |
123 | 120 |
124 void invert(); | 121 void invert(); |
125 | 122 |
126 WillBeHeapVector<Range> m_ranges; | 123 WillBeHeapVector<Range> m_ranges; |
127 }; | 124 }; |
128 | 125 |
129 } // namespace blink | 126 } // namespace blink |
130 | 127 |
131 WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::TimeRanges::Range); | 128 WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::TimeRanges::Range); |
132 | 129 |
133 #endif // TimeRanges_h | 130 #endif // TimeRanges_h |
OLD | NEW |