Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 954793002: Make load events in iframe elements work with OOPIF (Chromium side). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 size_t end_offset); 494 size_t end_offset);
495 void OnDidAccessInitialDocument(); 495 void OnDidAccessInitialDocument();
496 void OnDidDisownOpener(); 496 void OnDidDisownOpener();
497 void OnDidAssignPageId(int32 page_id); 497 void OnDidAssignPageId(int32 page_id);
498 void OnUpdateTitle(const base::string16& title, 498 void OnUpdateTitle(const base::string16& title,
499 blink::WebTextDirection title_direction); 499 blink::WebTextDirection title_direction);
500 void OnUpdateEncoding(const std::string& encoding); 500 void OnUpdateEncoding(const std::string& encoding);
501 void OnBeginNavigation(const CommonNavigationParams& common_params, 501 void OnBeginNavigation(const CommonNavigationParams& common_params,
502 const BeginNavigationParams& begin_params, 502 const BeginNavigationParams& begin_params,
503 scoped_refptr<ResourceRequestBody> body); 503 scoped_refptr<ResourceRequestBody> body);
504 void OnDispatchLoad();
504 void OnAccessibilityEvents( 505 void OnAccessibilityEvents(
505 const std::vector<AccessibilityHostMsg_EventParams>& params, 506 const std::vector<AccessibilityHostMsg_EventParams>& params,
506 int reset_token); 507 int reset_token);
507 void OnAccessibilityLocationChanges( 508 void OnAccessibilityLocationChanges(
508 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); 509 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params);
509 void OnAccessibilityFindInPageResult( 510 void OnAccessibilityFindInPageResult(
510 const AccessibilityHostMsg_FindInPageResultParams& params); 511 const AccessibilityHostMsg_FindInPageResultParams& params);
511 void OnToggleFullscreen(bool enter_fullscreen); 512 void OnToggleFullscreen(bool enter_fullscreen);
512 void OnBeforeUnloadHandlersPresent(bool present); 513 void OnBeforeUnloadHandlersPresent(bool present);
513 void OnUnloadHandlersPresent(bool present); 514 void OnUnloadHandlersPresent(bool present);
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
703 704
704 // NOTE: This must be the last member. 705 // NOTE: This must be the last member.
705 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 706 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
706 707
707 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 708 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
708 }; 709 };
709 710
710 } // namespace content 711 } // namespace content
711 712
712 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 713 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698