Source/WebCore/ChangeLog

 12011-07-19 Cary Clark <caryclark@google.com>
 2
 3 update FontSkia to match platform context convention
 4 https://bugs.webkit.org/show_bug.cgi?id=64795
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 No new tests. This platform variant is not
 9 built at this time.
 10
 11 * platform/graphics/skia/FontSkia.cpp:
 12 (WebCore::Font::drawGlyphs):
 13 Call makeGrContextCurrent instead of the obsolete prepareForSoftwareDraw.
 14
1152011-07-19 Vsevolod Vlasov <vsevik@chromium.org>
216
317 Web Inspector: Rename agentIdentifierPrefix to processId, move out from page agent and make static.
91251

Source/WebCore/platform/graphics/skia/FontSkia.cpp

@@void Font::drawGlyphs(GraphicsContext* g
129129 y += SkFloatToScalar(adv[i].height);
130130 }
131131
132  gc->platformContext()->prepareForSoftwareDraw();
 132 gc->platformContext()->makeGrContextCurrent();
133133
134134 SkCanvas* canvas = gc->platformContext()->canvas();
135135 TextDrawingModeFlags textMode = gc->platformContext()->getTextDrawingMode();
91249