| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 | 260 |
| 261 // IPC Message handlers. | 261 // IPC Message handlers. |
| 262 void OnAddMessageToConsole(int32 level, | 262 void OnAddMessageToConsole(int32 level, |
| 263 const base::string16& message, | 263 const base::string16& message, |
| 264 int32 line_no, | 264 int32 line_no, |
| 265 const base::string16& source_id); | 265 const base::string16& source_id); |
| 266 void OnDetach(); | 266 void OnDetach(); |
| 267 void OnFrameFocused(); | 267 void OnFrameFocused(); |
| 268 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); | 268 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); |
| 269 void OnDocumentOnLoadCompleted(); | 269 void OnDocumentOnLoadCompleted(); |
| 270 void OnDidStartProvisionalLoadForFrame(const GURL& url); | 270 void OnDidStartProvisionalLoadForFrame(const GURL& url, |
| 271 bool is_transition_navigation); |
| 271 void OnDidFailProvisionalLoadWithError( | 272 void OnDidFailProvisionalLoadWithError( |
| 272 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); | 273 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); |
| 273 void OnDidFailLoadWithError( | 274 void OnDidFailLoadWithError( |
| 274 const GURL& url, | 275 const GURL& url, |
| 275 int error_code, | 276 int error_code, |
| 276 const base::string16& error_description); | 277 const base::string16& error_description); |
| 277 void OnDidRedirectProvisionalLoad(int32 page_id, | 278 void OnDidRedirectProvisionalLoad(int32 page_id, |
| 278 const GURL& source_url, | 279 const GURL& source_url, |
| 279 const GURL& target_url); | 280 const GURL& target_url); |
| 280 void OnNavigate(const IPC::Message& msg); | 281 void OnNavigate(const IPC::Message& msg); |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 base::Callback<void(ui::AXEvent, int)> accessibility_testing_callback_; | 383 base::Callback<void(ui::AXEvent, int)> accessibility_testing_callback_; |
| 383 // The most recently received accessibility tree - for testing only. | 384 // The most recently received accessibility tree - for testing only. |
| 384 scoped_ptr<ui::AXTree> ax_tree_for_testing_; | 385 scoped_ptr<ui::AXTree> ax_tree_for_testing_; |
| 385 | 386 |
| 386 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 387 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 387 }; | 388 }; |
| 388 | 389 |
| 389 } // namespace content | 390 } // namespace content |
| 390 | 391 |
| 391 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 392 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |