OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 251 matching lines...) Loading... |
262 void InvalidationSet::show() const | 262 void InvalidationSet::show() const |
263 { | 263 { |
264 RefPtr<TracedValue> value = TracedValue::create(); | 264 RefPtr<TracedValue> value = TracedValue::create(); |
265 value->beginArray("InvalidationSet"); | 265 value->beginArray("InvalidationSet"); |
266 toTracedValue(value.get()); | 266 toTracedValue(value.get()); |
267 value->endArray(); | 267 value->endArray(); |
268 fprintf(stderr, "%s\n", value->asTraceFormat().ascii().data()); | 268 fprintf(stderr, "%s\n", value->asTraceFormat().ascii().data()); |
269 } | 269 } |
270 #endif // NDEBUG | 270 #endif // NDEBUG |
271 | 271 |
| 272 SiblingInvalidationSet::SiblingInvalidationSet() |
| 273 : m_maxDirectAdjacentSelectors(1) |
| 274 , m_descendantInvalidationSet(DescendantInvalidationSet::create()) |
| 275 { |
| 276 } |
| 277 |
| 278 void SiblingInvalidationSet::combine(const SiblingInvalidationSet& other) |
| 279 { |
| 280 m_maxDirectAdjacentSelectors = std::max(m_maxDirectAdjacentSelectors, other.
m_maxDirectAdjacentSelectors); |
| 281 m_descendantInvalidationSet->combine(other.descendants()); |
| 282 |
| 283 InvalidationSet::combine(other); |
| 284 } |
| 285 |
272 } // namespace blink | 286 } // namespace blink |
OLD | NEW |