OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); | 335 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); |
336 void OnDocumentOnLoadCompleted(); | 336 void OnDocumentOnLoadCompleted(); |
337 void OnDidStartProvisionalLoadForFrame(const GURL& url, | 337 void OnDidStartProvisionalLoadForFrame(const GURL& url, |
338 bool is_transition_navigation); | 338 bool is_transition_navigation); |
339 void OnDidFailProvisionalLoadWithError( | 339 void OnDidFailProvisionalLoadWithError( |
340 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); | 340 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); |
341 void OnDidFailLoadWithError( | 341 void OnDidFailLoadWithError( |
342 const GURL& url, | 342 const GURL& url, |
343 int error_code, | 343 int error_code, |
344 const base::string16& error_description); | 344 const base::string16& error_description); |
345 void OnDidRedirectProvisionalLoad(int32 page_id, | |
346 const GURL& source_url, | |
347 const GURL& target_url); | |
348 void OnDidCommitProvisionalLoad(const IPC::Message& msg); | 345 void OnDidCommitProvisionalLoad(const IPC::Message& msg); |
349 void OnBeforeUnloadACK( | 346 void OnBeforeUnloadACK( |
350 bool proceed, | 347 bool proceed, |
351 const base::TimeTicks& renderer_before_unload_start_time, | 348 const base::TimeTicks& renderer_before_unload_start_time, |
352 const base::TimeTicks& renderer_before_unload_end_time); | 349 const base::TimeTicks& renderer_before_unload_end_time); |
353 void OnSwapOutACK(); | 350 void OnSwapOutACK(); |
354 void OnContextMenu(const ContextMenuParams& params); | 351 void OnContextMenu(const ContextMenuParams& params); |
355 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); | 352 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); |
356 void OnRunJavaScriptMessage(const base::string16& message, | 353 void OnRunJavaScriptMessage(const base::string16& message, |
357 const base::string16& default_prompt, | 354 const base::string16& default_prompt, |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 | 485 |
489 // NOTE: This must be the last member. | 486 // NOTE: This must be the last member. |
490 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 487 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
491 | 488 |
492 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 489 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
493 }; | 490 }; |
494 | 491 |
495 } // namespace content | 492 } // namespace content |
496 | 493 |
497 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 494 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |