| 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); | 194 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); |
| 195 void OnDidFailLoadWithError( | 195 void OnDidFailLoadWithError( |
| 196 const GURL& url, | 196 const GURL& url, |
| 197 int error_code, | 197 int error_code, |
| 198 const base::string16& error_description); | 198 const base::string16& error_description); |
| 199 void OnDidRedirectProvisionalLoad(int32 page_id, | 199 void OnDidRedirectProvisionalLoad(int32 page_id, |
| 200 const GURL& source_url, | 200 const GURL& source_url, |
| 201 const GURL& target_url); | 201 const GURL& target_url); |
| 202 void OnNavigate(const IPC::Message& msg); | 202 void OnNavigate(const IPC::Message& msg); |
| 203 void OnDidStopLoading(); | 203 void OnDidStopLoading(); |
| 204 void OnDidChangeLoadProgress(double load_progress); |
| 204 void OnBeforeUnloadACK( | 205 void OnBeforeUnloadACK( |
| 205 bool proceed, | 206 bool proceed, |
| 206 const base::TimeTicks& renderer_before_unload_start_time, | 207 const base::TimeTicks& renderer_before_unload_start_time, |
| 207 const base::TimeTicks& renderer_before_unload_end_time); | 208 const base::TimeTicks& renderer_before_unload_end_time); |
| 208 void OnSwapOutACK(); | 209 void OnSwapOutACK(); |
| 209 void OnContextMenu(const ContextMenuParams& params); | 210 void OnContextMenu(const ContextMenuParams& params); |
| 210 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); | 211 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); |
| 211 void OnRunJavaScriptMessage(const base::string16& message, | 212 void OnRunJavaScriptMessage(const base::string16& message, |
| 212 const base::string16& default_prompt, | 213 const base::string16& default_prompt, |
| 213 const GURL& frame_url, | 214 const GURL& frame_url, |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 base::TimeTicks send_before_unload_start_time_; | 278 base::TimeTicks send_before_unload_start_time_; |
| 278 | 279 |
| 279 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 280 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 280 | 281 |
| 281 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 282 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 282 }; | 283 }; |
| 283 | 284 |
| 284 } // namespace content | 285 } // namespace content |
| 285 | 286 |
| 286 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 287 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |