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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 // IPC Message handlers. | 198 // IPC Message handlers. |
199 void OnAddMessageToConsole(int32 level, | 199 void OnAddMessageToConsole(int32 level, |
200 const base::string16& message, | 200 const base::string16& message, |
201 int32 line_no, | 201 int32 line_no, |
202 const base::string16& source_id); | 202 const base::string16& source_id); |
203 void OnDetach(); | 203 void OnDetach(); |
204 void OnFrameFocused(); | 204 void OnFrameFocused(); |
205 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); | 205 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); |
206 void OnDocumentOnLoadCompleted(); | 206 void OnDocumentOnLoadCompleted(); |
207 void OnDidStartProvisionalLoadForFrame(int parent_routing_id, | 207 void OnDidStartProvisionalLoadForFrame(int parent_routing_id, |
208 const GURL& url); | 208 const GURL& url, |
| 209 bool is_transition_navigation); |
209 void OnDidFailProvisionalLoadWithError( | 210 void OnDidFailProvisionalLoadWithError( |
210 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); | 211 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); |
211 void OnDidFailLoadWithError( | 212 void OnDidFailLoadWithError( |
212 const GURL& url, | 213 const GURL& url, |
213 int error_code, | 214 int error_code, |
214 const base::string16& error_description); | 215 const base::string16& error_description); |
215 void OnDidRedirectProvisionalLoad(int32 page_id, | 216 void OnDidRedirectProvisionalLoad(int32 page_id, |
216 const GURL& source_url, | 217 const GURL& source_url, |
217 const GURL& target_url); | 218 const GURL& target_url); |
218 void OnNavigate(const IPC::Message& msg); | 219 void OnNavigate(const IPC::Message& msg); |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 ServiceRegistryImpl service_registry_; | 308 ServiceRegistryImpl service_registry_; |
308 | 309 |
309 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 310 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
310 | 311 |
311 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 312 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
312 }; | 313 }; |
313 | 314 |
314 } // namespace content | 315 } // namespace content |
315 | 316 |
316 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 317 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |