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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 // script) from an insecure source. Note that the insecure content can | 125 // script) from an insecure source. Note that the insecure content can |
126 // spread to other frames in the same origin. | 126 // spread to other frames in the same origin. |
127 virtual void didRunInsecureContent(SecurityOrigin*, const KURL&) = 0; | 127 virtual void didRunInsecureContent(SecurityOrigin*, const KURL&) = 0; |
128 virtual void didDetectXSS(const KURL&, bool didBlockEntirePage) = 0; | 128 virtual void didDetectXSS(const KURL&, bool didBlockEntirePage) = 0; |
129 virtual void didDispatchPingLoader(const KURL&) = 0; | 129 virtual void didDispatchPingLoader(const KURL&) = 0; |
130 | 130 |
131 // Transmits the change in the set of watched CSS selectors property | 131 // Transmits the change in the set of watched CSS selectors property |
132 // that match any element on the frame. | 132 // that match any element on the frame. |
133 virtual void selectorMatchChanged(const Vector<String>& addedSelectors,
const Vector<String>& removedSelectors) = 0; | 133 virtual void selectorMatchChanged(const Vector<String>& addedSelectors,
const Vector<String>& removedSelectors) = 0; |
134 | 134 |
135 virtual PassRefPtr<DocumentLoader> createDocumentLoader(LocalFrame*, con
st ResourceRequest&, const SubstituteData&) = 0; | 135 virtual PassRefPtrWillBeRawPtr<DocumentLoader> createDocumentLoader(Loca
lFrame*, const ResourceRequest&, const SubstituteData&) = 0; |
136 | 136 |
137 virtual String userAgent(const KURL&) = 0; | 137 virtual String userAgent(const KURL&) = 0; |
138 | 138 |
139 virtual String doNotTrackValue() = 0; | 139 virtual String doNotTrackValue() = 0; |
140 | 140 |
141 virtual void transitionToCommittedForNewPage() = 0; | 141 virtual void transitionToCommittedForNewPage() = 0; |
142 | 142 |
143 virtual PassRefPtrWillBeRawPtr<LocalFrame> createFrame(const FrameLoadRe
quest&, const AtomicString& name, HTMLFrameOwnerElement*) = 0; | 143 virtual PassRefPtrWillBeRawPtr<LocalFrame> createFrame(const FrameLoadRe
quest&, const AtomicString& name, HTMLFrameOwnerElement*) = 0; |
144 // Whether or not plugin creation should fail if the HTMLPlugInElement i
sn't in the DOM after plugin initialization. | 144 // Whether or not plugin creation should fail if the HTMLPlugInElement i
sn't in the DOM after plugin initialization. |
145 enum DetachedPluginPolicy { | 145 enum DetachedPluginPolicy { |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 BeforeUnloadHandler, | 238 BeforeUnloadHandler, |
239 UnloadHandler, | 239 UnloadHandler, |
240 }; | 240 }; |
241 virtual void suddenTerminationDisablerChanged(bool present, SuddenTermin
ationDisablerType) { } | 241 virtual void suddenTerminationDisablerChanged(bool present, SuddenTermin
ationDisablerType) { } |
242 | 242 |
243 }; | 243 }; |
244 | 244 |
245 } // namespace blink | 245 } // namespace blink |
246 | 246 |
247 #endif // FrameLoaderClient_h | 247 #endif // FrameLoaderClient_h |
OLD | NEW |