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

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

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 11 matching lines...) Expand all
22 #include "core/style/FillLayer.h" 22 #include "core/style/FillLayer.h"
23 23
24 #include "core/layout/LayoutObject.h" 24 #include "core/layout/LayoutObject.h"
25 #include "core/style/DataEquivalency.h" 25 #include "core/style/DataEquivalency.h"
26 26
27 namespace blink { 27 namespace blink {
28 28
29 struct SameSizeAsFillLayer { 29 struct SameSizeAsFillLayer {
30 FillLayer* m_next; 30 FillLayer* m_next;
31 31
32 RefPtrWillBePersistent<StyleImage> m_image; 32 Persistent<StyleImage> m_image;
33 33
34 Length m_xPosition; 34 Length m_xPosition;
35 Length m_yPosition; 35 Length m_yPosition;
36 36
37 LengthSize m_sizeLength; 37 LengthSize m_sizeLength;
38 38
39 unsigned m_bitfields1; 39 unsigned m_bitfields1;
40 unsigned m_bitfields2; 40 unsigned m_bitfields2;
41 }; 41 };
42 42
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 { 419 {
420 for (; layer1 && layer2; layer1 = layer1->next(), layer2 = layer2->next()) { 420 for (; layer1 && layer2; layer1 = layer1->next(), layer2 = layer2->next()) {
421 if (!layerImagesIdentical(*layer1, *layer2)) 421 if (!layerImagesIdentical(*layer1, *layer2))
422 return false; 422 return false;
423 } 423 }
424 424
425 return !layer1 && !layer2; 425 return !layer1 && !layer2;
426 } 426 }
427 427
428 } // namespace blink 428 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/FillLayer.h ('k') | third_party/WebKit/Source/core/style/NinePieceImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698