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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 IPC::Message* reply_msg); | 542 IPC::Message* reply_msg); |
543 void OnMsgShowModalHTMLDialog(const GURL& url, int width, int height, | 543 void OnMsgShowModalHTMLDialog(const GURL& url, int width, int height, |
544 const std::string& json_arguments, | 544 const std::string& json_arguments, |
545 IPC::Message* reply_msg); | 545 IPC::Message* reply_msg); |
546 void OnMsgFormsSeen( | 546 void OnMsgFormsSeen( |
547 const std::vector<webkit_glue::FormFieldValues>& forms); | 547 const std::vector<webkit_glue::FormFieldValues>& forms); |
548 void OnMsgPasswordFormsSeen( | 548 void OnMsgPasswordFormsSeen( |
549 const std::vector<webkit_glue::PasswordForm>& forms); | 549 const std::vector<webkit_glue::PasswordForm>& forms); |
550 void OnMsgFormFieldValuesSubmitted(const webkit_glue::FormFieldValues& forms); | 550 void OnMsgFormFieldValuesSubmitted(const webkit_glue::FormFieldValues& forms); |
551 void OnMsgStartDragging(const WebDropData& drop_data, | 551 void OnMsgStartDragging(const WebDropData& drop_data, |
552 WebKit::WebDragOperationsMask operations_allowed, | 552 WebKit::WebDragOperationsMask operations_allowed); |
553 const SkBitmap& image, | |
554 const gfx::Point& image_offset); | |
555 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); | 553 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); |
556 void OnTakeFocus(bool reverse); | 554 void OnTakeFocus(bool reverse); |
557 void OnMsgPageHasOSDD(int32 page_id, const GURL& doc_url, bool autodetected); | 555 void OnMsgPageHasOSDD(int32 page_id, const GURL& doc_url, bool autodetected); |
558 void OnDidGetPrintedPagesCount(int cookie, int number_pages); | 556 void OnDidGetPrintedPagesCount(int cookie, int number_pages); |
559 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); | 557 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); |
560 void OnAddMessageToConsole(const std::wstring& message, | 558 void OnAddMessageToConsole(const std::wstring& message, |
561 int32 line_no, | 559 int32 line_no, |
562 const std::wstring& source_id); | 560 const std::wstring& source_id); |
563 | 561 |
564 void OnUpdateInspectorSettings(const std::string& raw_settings); | 562 void OnUpdateInspectorSettings(const std::string& raw_settings); |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
687 // True if the render view can be shut down suddenly. | 685 // True if the render view can be shut down suddenly. |
688 bool sudden_termination_allowed_; | 686 bool sudden_termination_allowed_; |
689 | 687 |
690 // The session storage namespace id to be used by the associated render view. | 688 // The session storage namespace id to be used by the associated render view. |
691 int64 session_storage_namespace_id_; | 689 int64 session_storage_namespace_id_; |
692 | 690 |
693 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 691 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
694 }; | 692 }; |
695 | 693 |
696 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 694 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
OLD | NEW |