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

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

Issue 665673004: Move selection invalidation to the invalidation phase (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated after Xianzhu's comments. Created 6 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
« no previous file with comments | « Source/core/rendering/shapes/Shape.cpp ('k') | no next file » | 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) 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 }; 105 };
106 106
107 DEFINE_IMAGE_TYPE_CASTS(SVGImage); 107 DEFINE_IMAGE_TYPE_CASTS(SVGImage);
108 108
109 class ImageObserverDisabler { 109 class ImageObserverDisabler {
110 WTF_MAKE_NONCOPYABLE(ImageObserverDisabler); 110 WTF_MAKE_NONCOPYABLE(ImageObserverDisabler);
111 public: 111 public:
112 ImageObserverDisabler(Image* image) 112 ImageObserverDisabler(Image* image)
113 : m_image(image) 113 : m_image(image)
114 { 114 {
115 ASSERT(m_image->imageObserver());
116 m_observer = m_image->imageObserver(); 115 m_observer = m_image->imageObserver();
117 m_image->setImageObserver(0); 116 m_image->setImageObserver(0);
118 } 117 }
119 118
120 ~ImageObserverDisabler() 119 ~ImageObserverDisabler()
121 { 120 {
122 m_image->setImageObserver(m_observer); 121 m_image->setImageObserver(m_observer);
123 } 122 }
124 private: 123 private:
125 Image* m_image; 124 Image* m_image;
126 ImageObserver* m_observer; 125 ImageObserver* m_observer;
127 }; 126 };
128 127
129 } 128 }
130 129
131 #endif // SVGImage_h 130 #endif // SVGImage_h
OLDNEW
« no previous file with comments | « Source/core/rendering/shapes/Shape.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698