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

Unified Diff: chrome/browser/renderer_host/render_message_filter.h

Issue 6289009: [Mac] Implement the system dictionary popup by implementing NSTextInput methods. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Plumb selection rannge with ViewHostMsg_SelectionChanged Created 9 years, 11 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: chrome/browser/renderer_host/render_message_filter.h
diff --git a/chrome/browser/renderer_host/render_message_filter.h b/chrome/browser/renderer_host/render_message_filter.h
index c4af36770f379d79e99a6225bfeb8f56e975f1e2..1a9a4da3ad4619fd6dcf2ab10d9834eb7b068432 100644
--- a/chrome/browser/renderer_host/render_message_filter.h
+++ b/chrome/browser/renderer_host/render_message_filter.h
@@ -51,6 +51,10 @@ namespace base {
class SharedMemory;
}
+namespace gfx {
+class Rect;
+}
+
namespace net {
class CookieStore;
}
@@ -196,6 +200,9 @@ class RenderMessageFilter : public BrowserMessageFilter,
void OnClipboardReadHTML(ui::Clipboard::Buffer buffer, IPC::Message* reply);
#if defined(OS_MACOSX)
void OnClipboardFindPboardWriteString(const string16& text);
+ void OnGotCharacterIndexForPoint(const uint index);
jam 2011/01/21 18:51:07 nit: for input parameters in IPC message dispatche
Robert Sesek 2011/01/21 23:40:07 Done.
+ void OnGotFirstRectForRange(const gfx::Rect& rect);
+ void OnGotStringFromRange(const string16&);
#endif
void OnClipboardReadAvailableTypes(ui::Clipboard::Buffer buffer,
IPC::Message* reply);

Powered by Google App Engine
This is Rietveld 408576698