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

Side by Side Diff: Source/core/css/CSSImageSetValue.cpp

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/CSSImageGeneratorValue.cpp ('k') | Source/core/css/CSSImageValue.cpp » ('j') | 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) 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2012 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 10 matching lines...) Expand all
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE. 23 * THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 #include "core/css/CSSImageSetValue.h" 27 #include "core/css/CSSImageSetValue.h"
28 28
29 #if ENABLE(CSS_IMAGE_SET) 29 #if ENABLE(CSS_IMAGE_SET)
30 30
31 #include "Document.h"
32 #include "WebCoreMemoryInstrumentation.h"
33 #include "core/css/CSSImageValue.h" 31 #include "core/css/CSSImageValue.h"
34 #include "core/css/CSSPrimitiveValue.h" 32 #include "core/css/CSSPrimitiveValue.h"
33 #include "core/dom/Document.h"
34 #include "core/dom/WebCoreMemoryInstrumentation.h"
35 #include "core/loader/cache/CachedImage.h" 35 #include "core/loader/cache/CachedImage.h"
36 #include "core/loader/cache/CachedResourceLoader.h" 36 #include "core/loader/cache/CachedResourceLoader.h"
37 #include "core/loader/cache/CachedResourceRequest.h" 37 #include "core/loader/cache/CachedResourceRequest.h"
38 #include "core/loader/cache/CachedResourceRequestInitiators.h" 38 #include "core/loader/cache/CachedResourceRequestInitiators.h"
39 #include "core/page/Page.h" 39 #include "core/page/Page.h"
40 #include "core/rendering/style/StyleCachedImageSet.h" 40 #include "core/rendering/style/StyleCachedImageSet.h"
41 #include "core/rendering/style/StylePendingImage.h" 41 #include "core/rendering/style/StylePendingImage.h"
42 #include <wtf/MemoryInstrumentationVector.h> 42 #include <wtf/MemoryInstrumentationVector.h>
43 43
44 namespace WebCore { 44 namespace WebCore {
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 204
205 void CSSImageSetValue::ImageWithScale::reportMemoryUsage(MemoryObjectInfo* memor yObjectInfo) const 205 void CSSImageSetValue::ImageWithScale::reportMemoryUsage(MemoryObjectInfo* memor yObjectInfo) const
206 { 206 {
207 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); 207 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
208 info.addMember(imageURL, "imageURL"); 208 info.addMember(imageURL, "imageURL");
209 } 209 }
210 210
211 } // namespace WebCore 211 } // namespace WebCore
212 212
213 #endif // ENABLE(CSS_IMAGE_SET) 213 #endif // ENABLE(CSS_IMAGE_SET)
OLDNEW
« no previous file with comments | « Source/core/css/CSSImageGeneratorValue.cpp ('k') | Source/core/css/CSSImageValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698