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 532 matching lines...) Loading... |
543 const int flags, | 543 const int flags, |
544 IPC::Message* reply_msg); | 544 IPC::Message* reply_msg); |
545 void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url, | 545 void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url, |
546 const std::wstring& message, | 546 const std::wstring& message, |
547 IPC::Message* reply_msg); | 547 IPC::Message* reply_msg); |
548 void OnMsgShowModalHTMLDialog(const GURL& url, int width, int height, | 548 void OnMsgShowModalHTMLDialog(const GURL& url, int width, int height, |
549 const std::string& json_arguments, | 549 const std::string& json_arguments, |
550 IPC::Message* reply_msg); | 550 IPC::Message* reply_msg); |
551 void OnMsgFormsSeen( | 551 void OnMsgFormsSeen( |
552 const std::vector<webkit_glue::FormData>& forms); | 552 const std::vector<webkit_glue::FormData>& forms); |
553 void OnMsgPasswordFormsSeen( | 553 void OnMsgPasswordFormsFound( |
554 const std::vector<webkit_glue::PasswordForm>& forms); | 554 const std::vector<webkit_glue::PasswordForm>& forms); |
| 555 void OnMsgPasswordFormsVisible( |
| 556 const std::vector<webkit_glue::PasswordForm>& visible_forms); |
555 void OnMsgFormSubmitted(const webkit_glue::FormData& forms); | 557 void OnMsgFormSubmitted(const webkit_glue::FormData& forms); |
556 void OnMsgStartDragging(const WebDropData& drop_data, | 558 void OnMsgStartDragging(const WebDropData& drop_data, |
557 WebKit::WebDragOperationsMask operations_allowed, | 559 WebKit::WebDragOperationsMask operations_allowed, |
558 const SkBitmap& image, | 560 const SkBitmap& image, |
559 const gfx::Point& image_offset); | 561 const gfx::Point& image_offset); |
560 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); | 562 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); |
561 void OnTakeFocus(bool reverse); | 563 void OnTakeFocus(bool reverse); |
562 void OnMsgPageHasOSDD(int32 page_id, const GURL& doc_url, bool autodetected); | 564 void OnMsgPageHasOSDD(int32 page_id, const GURL& doc_url, bool autodetected); |
563 void OnDidGetPrintedPagesCount(int cookie, int number_pages); | 565 void OnDidGetPrintedPagesCount(int cookie, int number_pages); |
564 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); | 566 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); |
(...skipping 131 matching lines...) Loading... |
696 int64 session_storage_namespace_id_; | 698 int64 session_storage_namespace_id_; |
697 | 699 |
698 // Whether this render view will be used for extensions. This controls | 700 // Whether this render view will be used for extensions. This controls |
699 // what process type we use. | 701 // what process type we use. |
700 bool is_extension_process_; | 702 bool is_extension_process_; |
701 | 703 |
702 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 704 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
703 }; | 705 }; |
704 | 706 |
705 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 707 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
OLD | NEW |