Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(382)

Side by Side Diff: Source/core/html/TimeRanges.h

Issue 559993004: Fix TimeRanges::nearest() to actually calculate nearest time. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Comments. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/html/HTMLMediaElement.cpp ('k') | Source/core/html/TimeRanges.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 newPlaybackPosition, double currentPlaybackPosition) c onst;
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
OLDNEW
« no previous file with comments | « Source/core/html/HTMLMediaElement.cpp ('k') | Source/core/html/TimeRanges.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698