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

Side by Side Diff: Source/core/loader/cache/CachedRawResource.cpp

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/loader/cache/CachedImage.cpp ('k') | Source/core/loader/cache/CachedResource.h » ('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) 2011 Google Inc. All Rights Reserved. 2 * Copyright (C) 2011 Google 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 12 matching lines...) Expand all
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 #include "CachedRawResource.h" 27 #include "CachedRawResource.h"
28 28
29 #include "CachedResourceClient.h" 29 #include "CachedResourceClient.h"
30 #include "CachedResourceClientWalker.h" 30 #include "CachedResourceClientWalker.h"
31 #include "CachedResourceLoader.h" 31 #include "CachedResourceLoader.h"
32 #include "ResourceLoader.h" 32 #include "ResourceLoader.h"
33 #include "SharedBuffer.h"
34 #include "WebCoreMemoryInstrumentation.h" 33 #include "WebCoreMemoryInstrumentation.h"
34 #include "core/platform/SharedBuffer.h"
35 #include <wtf/PassRefPtr.h> 35 #include <wtf/PassRefPtr.h>
36 36
37 namespace WebCore { 37 namespace WebCore {
38 38
39 CachedRawResource::CachedRawResource(ResourceRequest& resourceRequest, Type type ) 39 CachedRawResource::CachedRawResource(ResourceRequest& resourceRequest, Type type )
40 : CachedResource(resourceRequest, type) 40 : CachedResource(resourceRequest, type)
41 , m_identifier(0) 41 , m_identifier(0)
42 { 42 {
43 } 43 }
44 44
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 } 214 }
215 215
216 void CachedRawResource::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) co nst 216 void CachedRawResource::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) co nst
217 { 217 {
218 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CachedResou rceRaw); 218 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CachedResou rceRaw);
219 CachedResource::reportMemoryUsage(memoryObjectInfo); 219 CachedResource::reportMemoryUsage(memoryObjectInfo);
220 } 220 }
221 221
222 222
223 } // namespace WebCore 223 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/loader/cache/CachedImage.cpp ('k') | Source/core/loader/cache/CachedResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698