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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
580 void OnMsgPasswordFormsVisible( | 580 void OnMsgPasswordFormsVisible( |
581 const std::vector<webkit_glue::PasswordForm>& visible_forms); | 581 const std::vector<webkit_glue::PasswordForm>& visible_forms); |
582 void OnMsgFormSubmitted(const webkit_glue::FormData& forms); | 582 void OnMsgFormSubmitted(const webkit_glue::FormData& forms); |
583 void OnMsgStartDragging(const WebDropData& drop_data, | 583 void OnMsgStartDragging(const WebDropData& drop_data, |
584 WebKit::WebDragOperationsMask operations_allowed, | 584 WebKit::WebDragOperationsMask operations_allowed, |
585 const SkBitmap& image, | 585 const SkBitmap& image, |
586 const gfx::Point& image_offset); | 586 const gfx::Point& image_offset); |
587 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); | 587 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); |
588 void OnTakeFocus(bool reverse); | 588 void OnTakeFocus(bool reverse); |
589 void OnMsgPageHasOSDD(int32 page_id, const GURL& doc_url, bool autodetected); | 589 void OnMsgPageHasOSDD(int32 page_id, const GURL& doc_url, bool autodetected); |
590 void OnMsgGetSearchProviderInstallState(const GURL& url, | |
591 IPC::Message* reply_msg); | |
592 void OnDidGetPrintedPagesCount(int cookie, int number_pages); | 590 void OnDidGetPrintedPagesCount(int cookie, int number_pages); |
593 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); | 591 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); |
594 void OnAddMessageToConsole(const std::wstring& message, | 592 void OnAddMessageToConsole(const std::wstring& message, |
595 int32 line_no, | 593 int32 line_no, |
596 const std::wstring& source_id); | 594 const std::wstring& source_id); |
597 void OnUpdateInspectorSetting(const std::string& key, | 595 void OnUpdateInspectorSetting(const std::string& key, |
598 const std::string& value); | 596 const std::string& value); |
599 void OnForwardToDevToolsAgent(const IPC::Message& message); | 597 void OnForwardToDevToolsAgent(const IPC::Message& message); |
600 void OnForwardToDevToolsClient(const IPC::Message& message); | 598 void OnForwardToDevToolsClient(const IPC::Message& message); |
601 void OnActivateDevToolsWindow(); | 599 void OnActivateDevToolsWindow(); |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
743 int autofill_query_id_; | 741 int autofill_query_id_; |
744 std::vector<string16> autofill_values_; | 742 std::vector<string16> autofill_values_; |
745 std::vector<string16> autofill_labels_; | 743 std::vector<string16> autofill_labels_; |
746 std::vector<string16> autofill_icons_; | 744 std::vector<string16> autofill_icons_; |
747 std::vector<int> autofill_unique_ids_; | 745 std::vector<int> autofill_unique_ids_; |
748 | 746 |
749 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 747 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
750 }; | 748 }; |
751 | 749 |
752 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 750 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
OLD | NEW |