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

Side by Side Diff: Source/platform/fonts/mac/FontMac.cpp

Issue 400543004: Rename WebCore namespace to blink in Platform (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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) 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 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 24 matching lines...) Expand all
35 #include "platform/fonts/FontPlatformFeatures.h" 35 #include "platform/fonts/FontPlatformFeatures.h"
36 #include "platform/fonts/FontSmoothingMode.h" 36 #include "platform/fonts/FontSmoothingMode.h"
37 #include "platform/fonts/GlyphBuffer.h" 37 #include "platform/fonts/GlyphBuffer.h"
38 #include "platform/fonts/SimpleFontData.h" 38 #include "platform/fonts/SimpleFontData.h"
39 #include "platform/graphics/GraphicsContext.h" 39 #include "platform/graphics/GraphicsContext.h"
40 40
41 #include "third_party/skia/include/core/SkCanvas.h" 41 #include "third_party/skia/include/core/SkCanvas.h"
42 #include "third_party/skia/include/core/SkPaint.h" 42 #include "third_party/skia/include/core/SkPaint.h"
43 #include "third_party/skia/include/core/SkTypeface.h" 43 #include "third_party/skia/include/core/SkTypeface.h"
44 44
45 namespace WebCore { 45 namespace blink {
46 46
47 bool FontPlatformFeatures::canReturnFallbackFontsForComplexText() 47 bool FontPlatformFeatures::canReturnFallbackFontsForComplexText()
48 { 48 {
49 return true; 49 return true;
50 } 50 }
51 51
52 bool FontPlatformFeatures::canExpandAroundIdeographsInComplexText() 52 bool FontPlatformFeatures::canExpandAroundIdeographsInComplexText()
53 { 53 {
54 return true; 54 return true;
55 } 55 }
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 // See comment in FontHarfBuzz.cpp::paintGlyphs() for more details. 165 // See comment in FontHarfBuzz.cpp::paintGlyphs() for more details.
166 paint.setLooper(0); 166 paint.setLooper(0);
167 } 167 }
168 168
169 gc->drawPosText(glyphs, numGlyphs * sizeof(Glyph), pos, textRect, paint) ; 169 gc->drawPosText(glyphs, numGlyphs * sizeof(Glyph), pos, textRect, paint) ;
170 } 170 }
171 if (font->platformData().orientation() == Vertical) 171 if (font->platformData().orientation() == Vertical)
172 gc->restore(); 172 gc->restore();
173 } 173 }
174 174
175 } // namespace WebCore 175 } // namespace blink
OLDNEW
« no previous file with comments | « Source/platform/fonts/mac/FontCustomPlatformDataMac.cpp ('k') | Source/platform/fonts/mac/MemoryActivatedFont.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698