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

Side by Side Diff: third_party/WebKit/Source/core/svg/graphics/SVGImage.h

Issue 1425593007: Separate display item clients for negative and normal/positive z-order children (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Struct DisplayItemClient Created 5 years, 1 month 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) 2006 Eric Seidel <eric@webkit.org> 2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org>
3 * Copyright (C) 2009 Apple Inc. All rights reserved. 3 * Copyright (C) 2009 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 PassRefPtr<SkImage> imageForCurrentFrame() override; 70 PassRefPtr<SkImage> imageForCurrentFrame() override;
71 71
72 // Returns the SVG image document's frame. 72 // Returns the SVG image document's frame.
73 FrameView* frameView() const; 73 FrameView* frameView() const;
74 74
75 // Does the SVG image/document contain any animations? 75 // Does the SVG image/document contain any animations?
76 bool hasAnimations() const; 76 bool hasAnimations() const;
77 77
78 void updateUseCounters(Document&) const; 78 void updateUseCounters(Document&) const;
79 79
80 DisplayItemClient displayItemClient() const { return toDisplayItemClient(thi s); } 80 DisplayItemClient displayItemClient() const { return DisplayItemClient(this) ; }
81 String debugName() const { return "SVGImage"; } 81 String debugName() const { return "SVGImage"; }
82 82
83 private: 83 private:
84 friend class AXLayoutObject; 84 friend class AXLayoutObject;
85 friend class SVGImageChromeClient; 85 friend class SVGImageChromeClient;
86 friend class SVGImageForContainer; 86 friend class SVGImageForContainer;
87 87
88 ~SVGImage() override; 88 ~SVGImage() override;
89 89
90 String filenameExtension() const override; 90 String filenameExtension() const override;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 m_image->setImageObserver(m_observer); 133 m_image->setImageObserver(m_observer);
134 } 134 }
135 private: 135 private:
136 Image* m_image; 136 Image* m_image;
137 ImageObserver* m_observer; 137 ImageObserver* m_observer;
138 }; 138 };
139 139
140 } 140 }
141 141
142 #endif // SVGImage_h 142 #endif // SVGImage_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/paint/TableCellPainterTest.cpp ('k') | third_party/WebKit/Source/platform/DragImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698