OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 bool selectionStartHasSpellingMarkerFor(int from, int length) const override
; | 227 bool selectionStartHasSpellingMarkerFor(int from, int length) const override
; |
228 WebString layerTreeAsText(bool showDebugInfo = false) const override; | 228 WebString layerTreeAsText(bool showDebugInfo = false) const override; |
229 | 229 |
230 void registerTestInterface(const WebString& name, WebTestInterfaceFactory*)
override; | 230 void registerTestInterface(const WebString& name, WebTestInterfaceFactory*)
override; |
231 | 231 |
232 // Creates a test interface by name if available, returns an empty handle | 232 // Creates a test interface by name if available, returns an empty handle |
233 // for unknown names. | 233 // for unknown names. |
234 v8::Local<v8::Value> createTestInterface(const AtomicString& name); | 234 v8::Local<v8::Value> createTestInterface(const AtomicString& name); |
235 | 235 |
236 // WebLocalFrame methods: | 236 // WebLocalFrame methods: |
237 void initializeToReplaceRemoteFrame(WebRemoteFrame*, const WebString& name,
WebSandboxFlags) override; | 237 void initializeToReplaceRemoteFrame(WebRemoteFrame*, const WebString& name,
WebSandboxFlags, const WebFrameOwnerProperties&) override; |
238 void setAutofillClient(WebAutofillClient*) override; | 238 void setAutofillClient(WebAutofillClient*) override; |
239 WebAutofillClient* autofillClient() override; | 239 WebAutofillClient* autofillClient() override; |
240 void setDevToolsAgentClient(WebDevToolsAgentClient*) override; | 240 void setDevToolsAgentClient(WebDevToolsAgentClient*) override; |
241 WebDevToolsAgent* devToolsAgent() override; | 241 WebDevToolsAgent* devToolsAgent() override; |
242 void sendPings(const WebNode& contextNode, const WebURL& destinationURL) ove
rride; | 242 void sendPings(const WebNode& contextNode, const WebURL& destinationURL) ove
rride; |
243 WebURLRequest requestFromHistoryItem(const WebHistoryItem&, WebURLRequest::C
achePolicy) | 243 WebURLRequest requestFromHistoryItem(const WebHistoryItem&, WebURLRequest::C
achePolicy) |
244 const override; | 244 const override; |
245 WebURLRequest requestForReload(WebFrameLoadType, const WebURL&) const overri
de; | 245 WebURLRequest requestForReload(WebFrameLoadType, const WebURL&) const overri
de; |
246 void load(const WebURLRequest&, WebFrameLoadType, const WebHistoryItem&, | 246 void load(const WebURLRequest&, WebFrameLoadType, const WebHistoryItem&, |
247 WebHistoryLoadType) override; | 247 WebHistoryLoadType) override; |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 // cleared upon close(). | 400 // cleared upon close(). |
401 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; | 401 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; |
402 #endif | 402 #endif |
403 }; | 403 }; |
404 | 404 |
405 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 405 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
406 | 406 |
407 } // namespace blink | 407 } // namespace blink |
408 | 408 |
409 #endif | 409 #endif |
OLD | NEW |