OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |