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

Side by Side Diff: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp

Issue 1896893004: Hook up style invalidation for CSS Paint API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@css-paint-register
Patch Set: rebase. Created 4 years, 7 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 27 matching lines...) Expand all
38 38
39 LengthPoint lengthPoints[2]; 39 LengthPoint lengthPoints[2];
40 LineClampValue lineClamps; 40 LineClampValue lineClamps;
41 DraggableRegionMode draggableRegions; 41 DraggableRegionMode draggableRegions;
42 42
43 void* dataRefs[8]; 43 void* dataRefs[8];
44 DataPersistent<void*> dataPersistents[2]; 44 DataPersistent<void*> dataPersistents[2];
45 void* ownPtrs[4]; 45 void* ownPtrs[4];
46 Persistent<void*> persistentHandles[2]; 46 Persistent<void*> persistentHandles[2];
47 void* refPtrs[2]; 47 void* refPtrs[2];
48 void* uniquePtrs[1];
48 49
49 FillLayer fillLayers; 50 FillLayer fillLayers;
50 NinePieceImage ninePieces; 51 NinePieceImage ninePieces;
51 FloatSize floatSize; 52 FloatSize floatSize;
52 Length lengths; 53 Length lengths;
53 54
54 StyleColor styleColors[8]; 55 StyleColor styleColors[8];
55 56
56 Vector<String> m_callbackSelectors; 57 Vector<String> m_callbackSelectors;
57 58
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 { 350 {
350 return dataEquivalent(m_shapeOutside, o.m_shapeOutside); 351 return dataEquivalent(m_shapeOutside, o.m_shapeOutside);
351 } 352 }
352 353
353 bool StyleRareNonInheritedData::clipPathDataEquivalent(const StyleRareNonInherit edData& o) const 354 bool StyleRareNonInheritedData::clipPathDataEquivalent(const StyleRareNonInherit edData& o) const
354 { 355 {
355 return dataEquivalent(m_clipPath, o.m_clipPath); 356 return dataEquivalent(m_clipPath, o.m_clipPath);
356 } 357 }
357 358
358 } // namespace blink 359 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698