| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 25 matching lines...) Expand all Loading... |
| 36 #include "public/web/WebFont.h" | 36 #include "public/web/WebFont.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class FontDescription; | 40 class FontDescription; |
| 41 | 41 |
| 42 class WebFontImpl final : public WebFont { | 42 class WebFontImpl final : public WebFont { |
| 43 public: | 43 public: |
| 44 explicit WebFontImpl(const FontDescription&); | 44 explicit WebFontImpl(const FontDescription&); |
| 45 | 45 |
| 46 virtual WebFontDescription fontDescription() const override; | 46 WebFontDescription fontDescription() const override; |
| 47 | 47 |
| 48 virtual int ascent() const override; | 48 int ascent() const override; |
| 49 virtual int descent() const override; | 49 int descent() const override; |
| 50 virtual int height() const override; | 50 int height() const override; |
| 51 virtual int lineSpacing() const override; | 51 int lineSpacing() const override; |
| 52 virtual float xHeight() const override; | 52 float xHeight() const override; |
| 53 | 53 |
| 54 virtual void drawText(WebCanvas*, const WebTextRun&, const WebFloatPoint& le
ftBaseline, WebColor, | 54 void drawText(WebCanvas*, const WebTextRun&, const WebFloatPoint& leftBaseli
ne, WebColor, |
| 55 const WebRect& clip) const override; | 55 const WebRect& clip) const override; |
| 56 | 56 |
| 57 virtual int calculateWidth(const WebTextRun&) const override; | 57 int calculateWidth(const WebTextRun&) const override; |
| 58 virtual int offsetForPosition(const WebTextRun&, float position) const overr
ide; | 58 int offsetForPosition(const WebTextRun&, float position) const override; |
| 59 virtual WebFloatRect selectionRectForText(const WebTextRun&, const WebFloatP
oint& leftBaseline, | 59 WebFloatRect selectionRectForText(const WebTextRun&, const WebFloatPoint& le
ftBaseline, |
| 60 int height, int from = 0, int to = -1) const override; | 60 int height, int from = 0, int to = -1) const override; |
| 61 | 61 |
| 62 DisplayItemClient displayItemClient() const { return toDisplayItemClient(thi
s); } | 62 DisplayItemClient displayItemClient() const { return toDisplayItemClient(thi
s); } |
| 63 String debugName() const { return "WebFontImpl"; } | 63 String debugName() const { return "WebFontImpl"; } |
| 64 | 64 |
| 65 private: | 65 private: |
| 66 Font m_font; | 66 Font m_font; |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 } // namespace blink | 69 } // namespace blink |
| 70 | 70 |
| 71 #endif | 71 #endif |
| OLD | NEW |