Chromium uses ExtTextOut(). In some situations, Chromium will use the Skia graphics library to draw text -- so you won't see any Windows API calls.
Note, it could be you are not intercepting the calls because you are attached to the wrong process -- a separate process is used to render webpages, and that is where the ExtTextOut() calls will be coming from. Also try disabling the sandbox with --no-sandbox, in case that is interfering with your interception code. On Thu, Sep 10, 2009 at 6:58 AM, Sivis <[email protected]> wrote: > > Hello, > I'm writing a text translator, which receives the text under the > cursor. It intercepts Windows API, which draw the text (such as > ExtTextOut). But in Chrome this method does not work. What API uses > the Chrome to draw text? > Thank you very much. > P.S. Excuse me for bad English. > > > > --~--~---------~--~----~------------~-------~--~----~ Chromium Discussion mailing list: [email protected] View archives, change email options, or unsubscribe: http://groups.google.com/group/chromium-discuss -~----------~----~----~----~------~----~------~--~---
