| 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 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 virtual void didRunInsecureContent(const WebSecurityOrigin&, const WebURL& i
nsecureURL) { } | 471 virtual void didRunInsecureContent(const WebSecurityOrigin&, const WebURL& i
nsecureURL) { } |
| 472 | 472 |
| 473 // A reflected XSS was encountered in the page and suppressed. | 473 // A reflected XSS was encountered in the page and suppressed. |
| 474 virtual void didDetectXSS(const WebURL&, bool didBlockEntirePage) { } | 474 virtual void didDetectXSS(const WebURL&, bool didBlockEntirePage) { } |
| 475 | 475 |
| 476 // A PingLoader was created, and a request dispatched to a URL. | 476 // A PingLoader was created, and a request dispatched to a URL. |
| 477 virtual void didDispatchPingLoader(const WebURL&) { } | 477 virtual void didDispatchPingLoader(const WebURL&) { } |
| 478 | 478 |
| 479 // This frame has displayed inactive content (such as an image) from | 479 // This frame has displayed inactive content (such as an image) from |
| 480 // a connection with certificate errors. | 480 // a connection with certificate errors. |
| 481 virtual void didDisplayContentWithCertificateErrors(const WebURL& url, const
WebCString& securityInfo) {} | 481 virtual void didDisplayContentWithCertificateErrors(const WebURL& url) {} |
| 482 // This frame has run active content (such as a script) from a | 482 // This frame has run active content (such as a script) from a |
| 483 // connection with certificate errors. | 483 // connection with certificate errors. |
| 484 virtual void didRunContentWithCertificateErrors(const WebURL& url, const Web
CString& securityInfo) {} | 484 virtual void didRunContentWithCertificateErrors(const WebURL& url) {} |
| 485 | 485 |
| 486 // A performance timing event (e.g. first paint) occurred | 486 // A performance timing event (e.g. first paint) occurred |
| 487 virtual void didChangePerformanceTiming() { } | 487 virtual void didChangePerformanceTiming() { } |
| 488 | 488 |
| 489 // Blink exhibited a certain loading behavior that the browser process will | 489 // Blink exhibited a certain loading behavior that the browser process will |
| 490 // use for segregated histograms. | 490 // use for segregated histograms. |
| 491 virtual void didObserveLoadingBehavior(WebLoadingBehaviorFlag) { } | 491 virtual void didObserveLoadingBehavior(WebLoadingBehaviorFlag) { } |
| 492 | 492 |
| 493 | 493 |
| 494 // Script notifications ------------------------------------------------ | 494 // Script notifications ------------------------------------------------ |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 return WebURL(); | 686 return WebURL(); |
| 687 } | 687 } |
| 688 | 688 |
| 689 protected: | 689 protected: |
| 690 virtual ~WebFrameClient() { } | 690 virtual ~WebFrameClient() { } |
| 691 }; | 691 }; |
| 692 | 692 |
| 693 } // namespace blink | 693 } // namespace blink |
| 694 | 694 |
| 695 #endif | 695 #endif |
| OLD | NEW |