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

Side by Side Diff: public/web/WebFrameClient.h

Issue 937203003: Make load events in iframe elements work with OOPIF (Blink side). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rename DispatchFrameOwnerLoadEvent to DispatchLoadEventForFrameOwner 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 | « Source/web/WebRemoteFrameImpl.cpp ('k') | public/web/WebRemoteFrame.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 // non-navigational events related to the data held by WebHistoryItem. 305 // non-navigational events related to the data held by WebHistoryItem.
306 // WARNING: This method may be called very frequently. 306 // WARNING: This method may be called very frequently.
307 virtual void didUpdateCurrentHistoryItem(WebLocalFrame*) { } 307 virtual void didUpdateCurrentHistoryItem(WebLocalFrame*) { }
308 308
309 // The frame's manifest has changed. 309 // The frame's manifest has changed.
310 virtual void didChangeManifest(WebLocalFrame*) { } 310 virtual void didChangeManifest(WebLocalFrame*) { }
311 311
312 // The frame's theme color has changed. 312 // The frame's theme color has changed.
313 virtual void didChangeThemeColor() { } 313 virtual void didChangeThemeColor() { }
314 314
315 // Called to dispatch a load event for this frame in the FrameOwner of an
316 // out-of-process parent frame.
317 virtual void dispatchLoad() { }
318
315 319
316 // Transition navigations ----------------------------------------------- 320 // Transition navigations -----------------------------------------------
317 321
318 // Provides serialized markup of transition elements for use in the followin g navigation. 322 // Provides serialized markup of transition elements for use in the followin g navigation.
319 virtual void addNavigationTransitionData(const WebTransitionElementData&) { } 323 virtual void addNavigationTransitionData(const WebTransitionElementData&) { }
320 324
321 // Web Notifications --------------------------------------------------- 325 // Web Notifications ---------------------------------------------------
322 326
323 // Requests permission to display platform notifications on the origin of th is frame. 327 // Requests permission to display platform notifications on the origin of th is frame.
324 virtual void requestNotificationPermission(const WebSecurityOrigin&, WebNoti ficationPermissionCallback* callback) { } 328 virtual void requestNotificationPermission(const WebSecurityOrigin&, WebNoti ficationPermissionCallback* callback) { }
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 }; 626 };
623 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { } 627 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { }
624 628
625 protected: 629 protected:
626 virtual ~WebFrameClient() { } 630 virtual ~WebFrameClient() { }
627 }; 631 };
628 632
629 } // namespace blink 633 } // namespace blink
630 634
631 #endif 635 #endif
OLDNEW
« no previous file with comments | « Source/web/WebRemoteFrameImpl.cpp ('k') | public/web/WebRemoteFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698