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