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

Side by Side Diff: chrome/browser/renderer_host/render_view_host.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 int automation_id); 600 int automation_id);
601 void OnMsgDOMUISend(const GURL& source_url, 601 void OnMsgDOMUISend(const GURL& source_url,
602 const std::string& message, 602 const std::string& message,
603 const std::string& content); 603 const std::string& content);
604 void OnMsgForwardMessageToExternalHost(const std::string& message, 604 void OnMsgForwardMessageToExternalHost(const std::string& message,
605 const std::string& origin, 605 const std::string& origin,
606 const std::string& target); 606 const std::string& target);
607 void OnMsgGoToEntryAtOffset(int offset); 607 void OnMsgGoToEntryAtOffset(int offset);
608 void OnMsgSetTooltipText(const std::wstring& tooltip_text, 608 void OnMsgSetTooltipText(const std::wstring& tooltip_text,
609 WebKit::WebTextDirection text_direction_hint); 609 WebKit::WebTextDirection text_direction_hint);
610 void OnMsgSelectionChanged(const std::string& text); 610 void OnMsgSelectionChanged(const std::string& text, int start, int end);
611 void OnMsgPasteFromSelectionClipboard(); 611 void OnMsgPasteFromSelectionClipboard();
612 void OnMsgRunFileChooser(const ViewHostMsg_RunFileChooser_Params& params); 612 void OnMsgRunFileChooser(const ViewHostMsg_RunFileChooser_Params& params);
613 void OnMsgRunJavaScriptMessage(const std::wstring& message, 613 void OnMsgRunJavaScriptMessage(const std::wstring& message,
614 const std::wstring& default_prompt, 614 const std::wstring& default_prompt,
615 const GURL& frame_url, 615 const GURL& frame_url,
616 const int flags, 616 const int flags,
617 IPC::Message* reply_msg); 617 IPC::Message* reply_msg);
618 void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url, 618 void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url,
619 const std::wstring& message, 619 const std::wstring& message,
620 IPC::Message* reply_msg); 620 IPC::Message* reply_msg);
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 // The most recently received accessibility tree - for unit testing only. 788 // The most recently received accessibility tree - for unit testing only.
789 webkit_glue::WebAccessibility accessibility_tree_; 789 webkit_glue::WebAccessibility accessibility_tree_;
790 790
791 // The termination status of the last render view that terminated. 791 // The termination status of the last render view that terminated.
792 base::TerminationStatus render_view_termination_status_; 792 base::TerminationStatus render_view_termination_status_;
793 793
794 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); 794 DISALLOW_COPY_AND_ASSIGN(RenderViewHost);
795 }; 795 };
796 796
797 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 797 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698