OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |