OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 void OnMsgShowView(int route_id, | 477 void OnMsgShowView(int route_id, |
478 WindowOpenDisposition disposition, | 478 WindowOpenDisposition disposition, |
479 const gfx::Rect& initial_pos, | 479 const gfx::Rect& initial_pos, |
480 bool user_gesture); | 480 bool user_gesture); |
481 void OnMsgShowWidget(int route_id, const gfx::Rect& initial_pos); | 481 void OnMsgShowWidget(int route_id, const gfx::Rect& initial_pos); |
482 void OnMsgShowFullscreenWidget(int route_id); | 482 void OnMsgShowFullscreenWidget(int route_id); |
483 void OnMsgRunModal(int opener_id, IPC::Message* reply_msg); | 483 void OnMsgRunModal(int opener_id, IPC::Message* reply_msg); |
484 void OnMsgRenderViewReady(); | 484 void OnMsgRenderViewReady(); |
485 void OnMsgRenderViewGone(int status, int error_code); | 485 void OnMsgRenderViewGone(int status, int error_code); |
486 void OnMsgDidStartProvisionalLoadForFrame(int64 frame_id, | 486 void OnMsgDidStartProvisionalLoadForFrame(int64 frame_id, |
| 487 int64 parent_frame_id, |
487 bool main_frame, | 488 bool main_frame, |
488 const GURL& opener_url, | 489 const GURL& opener_url, |
489 const GURL& url); | 490 const GURL& url); |
490 void OnMsgDidRedirectProvisionalLoad(int32 page_id, | 491 void OnMsgDidRedirectProvisionalLoad(int32 page_id, |
491 const GURL& opener_url, | 492 const GURL& opener_url, |
492 const GURL& source_url, | 493 const GURL& source_url, |
493 const GURL& target_url); | 494 const GURL& target_url); |
494 void OnMsgDidFailProvisionalLoadWithError( | 495 void OnMsgDidFailProvisionalLoadWithError( |
495 const ViewHostMsg_DidFailProvisionalLoadWithError_Params& params); | 496 const ViewHostMsg_DidFailProvisionalLoadWithError_Params& params); |
496 void OnMsgNavigate(const IPC::Message& msg); | 497 void OnMsgNavigate(const IPC::Message& msg); |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 701 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
701 }; | 702 }; |
702 | 703 |
703 #if defined(COMPILER_MSVC) | 704 #if defined(COMPILER_MSVC) |
704 #pragma warning(pop) | 705 #pragma warning(pop) |
705 #endif | 706 #endif |
706 | 707 |
707 } // namespace content | 708 } // namespace content |
708 | 709 |
709 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 710 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |