| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. |
| 3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 // insecure source. Inactive content cannot spread to other frames. | 122 // insecure source. Inactive content cannot spread to other frames. |
| 123 virtual void didDisplayInsecureContent() = 0; | 123 virtual void didDisplayInsecureContent() = 0; |
| 124 | 124 |
| 125 // The indicated security origin has run active content (such as a | 125 // The indicated security origin has run active content (such as a |
| 126 // script) from an insecure source. Note that the insecure content can | 126 // script) from an insecure source. Note that the insecure content can |
| 127 // spread to other frames in the same origin. | 127 // spread to other frames in the same origin. |
| 128 virtual void didRunInsecureContent(SecurityOrigin*, const KURL&) = 0; | 128 virtual void didRunInsecureContent(SecurityOrigin*, const KURL&) = 0; |
| 129 virtual void didDetectXSS(const KURL&, bool didBlockEntirePage) = 0; | 129 virtual void didDetectXSS(const KURL&, bool didBlockEntirePage) = 0; |
| 130 virtual void didDispatchPingLoader(const KURL&) = 0; | 130 virtual void didDispatchPingLoader(const KURL&) = 0; |
| 131 | 131 |
| 132 virtual void didDisplayContentWithCertificateErrors(const KURL&, const CStri
ng& securityInfo) = 0; |
| 133 virtual void didRunContentWithCertificateErrors(SecurityOrigin*, const KURL&
, const CString& securityInfo) = 0; |
| 134 |
| 132 // Will be called when |PerformanceTiming| events are updated | 135 // Will be called when |PerformanceTiming| events are updated |
| 133 virtual void didChangePerformanceTiming() { } | 136 virtual void didChangePerformanceTiming() { } |
| 134 | 137 |
| 135 // Transmits the change in the set of watched CSS selectors property | 138 // Transmits the change in the set of watched CSS selectors property |
| 136 // that match any element on the frame. | 139 // that match any element on the frame. |
| 137 virtual void selectorMatchChanged(const Vector<String>& addedSelectors, cons
t Vector<String>& removedSelectors) = 0; | 140 virtual void selectorMatchChanged(const Vector<String>& addedSelectors, cons
t Vector<String>& removedSelectors) = 0; |
| 138 | 141 |
| 139 virtual PassRefPtrWillBeRawPtr<DocumentLoader> createDocumentLoader(LocalFra
me*, const ResourceRequest&, const SubstituteData&) = 0; | 142 virtual PassRefPtrWillBeRawPtr<DocumentLoader> createDocumentLoader(LocalFra
me*, const ResourceRequest&, const SubstituteData&) = 0; |
| 140 | 143 |
| 141 virtual String userAgent() = 0; | 144 virtual String userAgent() = 0; |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 BeforeUnloadHandler, | 242 BeforeUnloadHandler, |
| 240 UnloadHandler, | 243 UnloadHandler, |
| 241 }; | 244 }; |
| 242 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } | 245 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } |
| 243 | 246 |
| 244 }; | 247 }; |
| 245 | 248 |
| 246 } // namespace blink | 249 } // namespace blink |
| 247 | 250 |
| 248 #endif // FrameLoaderClient_h | 251 #endif // FrameLoaderClient_h |
| OLD | NEW |