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

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

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/html/TextMetrics.h ('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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « Source/core/html/TextMetrics.h ('k') | Source/core/html/TimeRanges.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698