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

Side by Side Diff: Source/core/platform/graphics/WOFFFileFormat.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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 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 11 matching lines...) Expand all
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 <zlib.h> 27 #include <zlib.h>
28 #include "core/platform/graphics/WOFFFileFormat.h" 28 #include "core/platform/graphics/WOFFFileFormat.h"
29 29
30 #if !USE(OPENTYPE_SANITIZER) 30 #if !USE(OPENTYPE_SANITIZER)
31 31
32 #include "SharedBuffer.h" 32 #include "core/platform/SharedBuffer.h"
33 #include <wtf/ByteOrder.h> 33 #include <wtf/ByteOrder.h>
34 34
35 namespace WebCore { 35 namespace WebCore {
36 36
37 static bool readUInt32(SharedBuffer* buffer, size_t& offset, uint32_t& value) 37 static bool readUInt32(SharedBuffer* buffer, size_t& offset, uint32_t& value)
38 { 38 {
39 ASSERT_ARG(offset, offset <= buffer->size()); 39 ASSERT_ARG(offset, offset <= buffer->size());
40 if (buffer->size() - offset < sizeof(value)) 40 if (buffer->size() - offset < sizeof(value))
41 return false; 41 return false;
42 42
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 while (sfnt.size() % 4) 214 while (sfnt.size() % 4)
215 sfnt.append(0); 215 sfnt.append(0);
216 } 216 }
217 217
218 return sfnt.size() == totalSfntSize; 218 return sfnt.size() == totalSfntSize;
219 } 219 }
220 220
221 } // namespace WebCore 221 } // namespace WebCore
222 222
223 #endif // !USE(OPENTYPE_SANITIZER) 223 #endif // !USE(OPENTYPE_SANITIZER)
OLDNEW
« no previous file with comments | « Source/core/platform/graphics/ShadowBlur.cpp ('k') | Source/core/platform/graphics/chromium/AnimationTranslationUtil.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698