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 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 void OnMsgPasswordFormsVisible( | 564 void OnMsgPasswordFormsVisible( |
565 const std::vector<webkit_glue::PasswordForm>& visible_forms); | 565 const std::vector<webkit_glue::PasswordForm>& visible_forms); |
566 void OnMsgFormSubmitted(const webkit_glue::FormData& forms); | 566 void OnMsgFormSubmitted(const webkit_glue::FormData& forms); |
567 void OnMsgStartDragging(const WebDropData& drop_data, | 567 void OnMsgStartDragging(const WebDropData& drop_data, |
568 WebKit::WebDragOperationsMask operations_allowed, | 568 WebKit::WebDragOperationsMask operations_allowed, |
569 const SkBitmap& image, | 569 const SkBitmap& image, |
570 const gfx::Point& image_offset); | 570 const gfx::Point& image_offset); |
571 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); | 571 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); |
572 void OnTakeFocus(bool reverse); | 572 void OnTakeFocus(bool reverse); |
573 void OnMsgPageHasOSDD(int32 page_id, const GURL& doc_url, bool autodetected); | 573 void OnMsgPageHasOSDD(int32 page_id, const GURL& doc_url, bool autodetected); |
| 574 void OnMsgGetSearchProviderInstallState(const GURL& url, |
| 575 IPC::Message* reply_msg); |
574 void OnDidGetPrintedPagesCount(int cookie, int number_pages); | 576 void OnDidGetPrintedPagesCount(int cookie, int number_pages); |
575 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); | 577 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); |
576 void OnAddMessageToConsole(const std::wstring& message, | 578 void OnAddMessageToConsole(const std::wstring& message, |
577 int32 line_no, | 579 int32 line_no, |
578 const std::wstring& source_id); | 580 const std::wstring& source_id); |
579 void OnUpdateInspectorSetting(const std::string& key, | 581 void OnUpdateInspectorSetting(const std::string& key, |
580 const std::string& value); | 582 const std::string& value); |
581 void OnForwardToDevToolsAgent(const IPC::Message& message); | 583 void OnForwardToDevToolsAgent(const IPC::Message& message); |
582 void OnForwardToDevToolsClient(const IPC::Message& message); | 584 void OnForwardToDevToolsClient(const IPC::Message& message); |
583 void OnActivateDevToolsWindow(); | 585 void OnActivateDevToolsWindow(); |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
719 // AutoFill and Autocomplete suggestions. We accumulate these separately and | 721 // AutoFill and Autocomplete suggestions. We accumulate these separately and |
720 // send them back to the renderer together. | 722 // send them back to the renderer together. |
721 int autofill_query_id_; | 723 int autofill_query_id_; |
722 std::vector<string16> autofill_values_; | 724 std::vector<string16> autofill_values_; |
723 std::vector<string16> autofill_labels_; | 725 std::vector<string16> autofill_labels_; |
724 | 726 |
725 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 727 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
726 }; | 728 }; |
727 | 729 |
728 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 730 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
OLD | NEW |