| Index: content/browser/renderer_host/text_input_client_mac.h
|
| ===================================================================
|
| --- content/browser/renderer_host/text_input_client_mac.h (revision 164665)
|
| +++ content/browser/renderer_host/text_input_client_mac.h (working copy)
|
| @@ -17,7 +17,6 @@
|
|
|
| namespace content {
|
| class RenderWidgetHost;
|
| -}
|
|
|
| // This class helps with the Mac OS X dictionary popup. For the design overview,
|
| // look at this document:
|
| @@ -47,14 +46,13 @@
|
| // unlock and return that stored value.
|
| //
|
| // Returns NSNotFound if the request times out or is not completed.
|
| - NSUInteger GetCharacterIndexAtPoint(content::RenderWidgetHost* rwh,
|
| - gfx::Point point);
|
| + NSUInteger GetCharacterIndexAtPoint(RenderWidgetHost* rwh, gfx::Point point);
|
| // Returns nil if the request times out or is completed.
|
| NSAttributedString* GetAttributedSubstringFromRange(
|
| - content::RenderWidgetHost* rwh, NSRange range);
|
| + RenderWidgetHost* rwh, NSRange range);
|
| // Returns NSZeroRect if the request times out or is not completed. The result
|
| // is in WebKit coordinates.
|
| - NSRect GetFirstRectForRange(content::RenderWidgetHost* rwh, NSRange range);
|
| + NSRect GetFirstRectForRange(RenderWidgetHost* rwh, NSRange range);
|
|
|
| // When the renderer sends the ViewHostMsg reply, the RenderMessageFilter will
|
| // call the corresponding method on the IO thread to unlock the condition and
|
| @@ -87,4 +85,6 @@
|
| DISALLOW_COPY_AND_ASSIGN(TextInputClientMac);
|
| };
|
|
|
| +} // namespace content
|
| +
|
| #endif // CONTENT_BROWSER_RENDERER_HOST_TEXT_INPUT_CLIENT_MAC_H_
|
|
|