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

Unified Diff: content/browser/renderer_host/text_input_client_mac.h

Issue 11343017: Move remaining files in content\browser\renderer_host to content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
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_
« no previous file with comments | « content/browser/renderer_host/test_render_view_host.h ('k') | content/browser/renderer_host/text_input_client_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698