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 setFrameOwnerProperties(const WebFrameOwnerProperties&) override; |
242 void sendPings(const WebNode& contextNode, const WebURL& destinationURL) ove
rride; | 243 void sendPings(const WebNode& contextNode, const WebURL& destinationURL) ove
rride; |
243 WebURLRequest requestFromHistoryItem(const WebHistoryItem&, WebURLRequest::C
achePolicy) | 244 WebURLRequest requestFromHistoryItem(const WebHistoryItem&, WebURLRequest::C
achePolicy) |
244 const override; | 245 const override; |
245 WebURLRequest requestForReload(WebFrameLoadType, const WebURL&) const overri
de; | 246 WebURLRequest requestForReload(WebFrameLoadType, const WebURL&) const overri
de; |
246 void load(const WebURLRequest&, WebFrameLoadType, const WebHistoryItem&, | 247 void load(const WebURLRequest&, WebFrameLoadType, const WebHistoryItem&, |
247 WebHistoryLoadType) override; | 248 WebHistoryLoadType) override; |
248 bool isLoading() const override; | 249 bool isLoading() const override; |
249 bool isResourceLoadInProgress() const override; | 250 bool isResourceLoadInProgress() const override; |
250 bool isNavigationScheduled() const override; | 251 bool isNavigationScheduled() const override; |
251 void setCommittedFirstRealLoad() override; | 252 void setCommittedFirstRealLoad() override; |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 // cleared upon close(). | 403 // cleared upon close(). |
403 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; | 404 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; |
404 #endif | 405 #endif |
405 }; | 406 }; |
406 | 407 |
407 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 408 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
408 | 409 |
409 } // namespace blink | 410 } // namespace blink |
410 | 411 |
411 #endif | 412 #endif |
OLD | NEW |