| 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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 void OnMsgDidContentsPreferredSizeChange(const gfx::Size& new_size); | 588 void OnMsgDidContentsPreferredSizeChange(const gfx::Size& new_size); |
| 589 void OnMsgDomOperationResponse(const std::string& json_string, | 589 void OnMsgDomOperationResponse(const std::string& json_string, |
| 590 int automation_id); | 590 int automation_id); |
| 591 void OnMsgDOMUISend(const GURL& source_url, | 591 void OnMsgDOMUISend(const GURL& source_url, |
| 592 const std::string& message, | 592 const std::string& message, |
| 593 const std::string& content); | 593 const std::string& content); |
| 594 void OnMsgForwardMessageToExternalHost(const std::string& message, | 594 void OnMsgForwardMessageToExternalHost(const std::string& message, |
| 595 const std::string& origin, | 595 const std::string& origin, |
| 596 const std::string& target); | 596 const std::string& target); |
| 597 void OnMsgDocumentLoadedInFrame(long long frame_id); | 597 void OnMsgDocumentLoadedInFrame(long long frame_id); |
| 598 void OnMsgDidFinishLoad(long long frame_id); |
| 598 void OnMsgGoToEntryAtOffset(int offset); | 599 void OnMsgGoToEntryAtOffset(int offset); |
| 599 void OnMsgSetTooltipText(const std::wstring& tooltip_text, | 600 void OnMsgSetTooltipText(const std::wstring& tooltip_text, |
| 600 WebKit::WebTextDirection text_direction_hint); | 601 WebKit::WebTextDirection text_direction_hint); |
| 601 void OnMsgSelectionChanged(const std::string& text); | 602 void OnMsgSelectionChanged(const std::string& text); |
| 602 void OnMsgPasteFromSelectionClipboard(); | 603 void OnMsgPasteFromSelectionClipboard(); |
| 603 void OnMsgRunFileChooser(const ViewHostMsg_RunFileChooser_Params& params); | 604 void OnMsgRunFileChooser(const ViewHostMsg_RunFileChooser_Params& params); |
| 604 void OnMsgRunJavaScriptMessage(const std::wstring& message, | 605 void OnMsgRunJavaScriptMessage(const std::wstring& message, |
| 605 const std::wstring& default_prompt, | 606 const std::wstring& default_prompt, |
| 606 const GURL& frame_url, | 607 const GURL& frame_url, |
| 607 const int flags, | 608 const int flags, |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 801 // Whether the accessibility tree should be saved, for unit testing. | 802 // Whether the accessibility tree should be saved, for unit testing. |
| 802 bool save_accessibility_tree_for_testing_; | 803 bool save_accessibility_tree_for_testing_; |
| 803 | 804 |
| 804 // The most recently received accessibility tree - for unit testing only. | 805 // The most recently received accessibility tree - for unit testing only. |
| 805 webkit_glue::WebAccessibility accessibility_tree_; | 806 webkit_glue::WebAccessibility accessibility_tree_; |
| 806 | 807 |
| 807 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 808 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 808 }; | 809 }; |
| 809 | 810 |
| 810 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 811 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |