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

Side by Side Diff: third_party/WebKit/Source/platform/fonts/WebFontDecoder.cpp

Issue 2795413003: Rewrite references to "wtf/" to "platform/wtf/" in platform/fonts. (Closed)
Patch Set: Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "platform/fonts/WebFontDecoder.h" 31 #include "platform/fonts/WebFontDecoder.h"
32 32
33 #include "platform/Histogram.h" 33 #include "platform/Histogram.h"
34 #include "platform/SharedBuffer.h" 34 #include "platform/SharedBuffer.h"
35 #include "platform/fonts/FontCache.h" 35 #include "platform/fonts/FontCache.h"
36 #include "platform/graphics/skia/SkiaUtils.h" 36 #include "platform/graphics/skia/SkiaUtils.h"
37 #include "platform/instrumentation/tracing/TraceEvent.h" 37 #include "platform/instrumentation/tracing/TraceEvent.h"
38 #include "platform/wtf/CurrentTime.h"
38 #include "public/platform/Platform.h" 39 #include "public/platform/Platform.h"
39 #include "third_party/harfbuzz-ng/src/hb.h" 40 #include "third_party/harfbuzz-ng/src/hb.h"
40 #include "third_party/ots/include/ots-memory-stream.h" 41 #include "third_party/ots/include/ots-memory-stream.h"
41 #include "third_party/skia/include/core/SkStream.h" 42 #include "third_party/skia/include/core/SkStream.h"
42 #include "wtf/CurrentTime.h"
43 43
44 #include <stdarg.h> 44 #include <stdarg.h>
45 45
46 namespace blink { 46 namespace blink {
47 47
48 namespace { 48 namespace {
49 49
50 class BlinkOTSContext final : public ots::OTSContext { 50 class BlinkOTSContext final : public ots::OTSContext {
51 DISALLOW_NEW(); 51 DISALLOW_NEW();
52 52
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 if (!typeface) { 226 if (!typeface) {
227 setErrorString("Not a valid font data"); 227 setErrorString("Not a valid font data");
228 return nullptr; 228 return nullptr;
229 } 229 }
230 230
231 m_decodedSize = decodedLength; 231 m_decodedSize = decodedLength;
232 return typeface; 232 return typeface;
233 } 233 }
234 234
235 } // namespace blink 235 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698