| 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 void OnShowDesktopNotification( | 428 void OnShowDesktopNotification( |
| 429 int notification_id, | 429 int notification_id, |
| 430 const ShowDesktopNotificationHostMsgParams& params); | 430 const ShowDesktopNotificationHostMsgParams& params); |
| 431 void OnCancelDesktopNotification(int notification_id); | 431 void OnCancelDesktopNotification(int notification_id); |
| 432 void OnTextSurroundingSelectionResponse(const base::string16& content, | 432 void OnTextSurroundingSelectionResponse(const base::string16& content, |
| 433 size_t start_offset, | 433 size_t start_offset, |
| 434 size_t end_offset); | 434 size_t end_offset); |
| 435 void OnDidAccessInitialDocument(); | 435 void OnDidAccessInitialDocument(); |
| 436 void OnDidDisownOpener(); | 436 void OnDidDisownOpener(); |
| 437 void OnDidAssignPageId(int32 page_id); | 437 void OnDidAssignPageId(int32 page_id); |
| 438 void OnUpdateTitle(int32 page_id, | 438 void OnUpdateTitle(const base::string16& title, |
| 439 const base::string16& title, | |
| 440 blink::WebTextDirection title_direction); | 439 blink::WebTextDirection title_direction); |
| 441 void OnUpdateEncoding(const std::string& encoding); | 440 void OnUpdateEncoding(const std::string& encoding); |
| 442 void OnBeginNavigation(const FrameHostMsg_BeginNavigation_Params& params, | 441 void OnBeginNavigation(const FrameHostMsg_BeginNavigation_Params& params, |
| 443 const CommonNavigationParams& common_params); | 442 const CommonNavigationParams& common_params); |
| 444 void OnAccessibilityEvents( | 443 void OnAccessibilityEvents( |
| 445 const std::vector<AccessibilityHostMsg_EventParams>& params, | 444 const std::vector<AccessibilityHostMsg_EventParams>& params, |
| 446 int reset_token); | 445 int reset_token); |
| 447 void OnAccessibilityLocationChanges( | 446 void OnAccessibilityLocationChanges( |
| 448 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 447 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
| 449 | 448 |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 596 | 595 |
| 597 // NOTE: This must be the last member. | 596 // NOTE: This must be the last member. |
| 598 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 597 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 599 | 598 |
| 600 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 599 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 601 }; | 600 }; |
| 602 | 601 |
| 603 } // namespace content | 602 } // namespace content |
| 604 | 603 |
| 605 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 604 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |