| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 WebString layerTreeAsText(bool showDebugInfo = false) const override; | 231 WebString layerTreeAsText(bool showDebugInfo = false) const override; |
| 232 | 232 |
| 233 WebFrameImplBase* toImplBase() override { return this; } | 233 WebFrameImplBase* toImplBase() override { return this; } |
| 234 | 234 |
| 235 // WebLocalFrame methods: | 235 // WebLocalFrame methods: |
| 236 void setAutofillClient(WebAutofillClient*) override; | 236 void setAutofillClient(WebAutofillClient*) override; |
| 237 WebAutofillClient* autofillClient() override; | 237 WebAutofillClient* autofillClient() override; |
| 238 void setDevToolsAgentClient(WebDevToolsAgentClient*) override; | 238 void setDevToolsAgentClient(WebDevToolsAgentClient*) override; |
| 239 WebDevToolsAgent* devToolsAgent() override; | 239 WebDevToolsAgent* devToolsAgent() override; |
| 240 WebLocalFrameImpl* localRoot() override; | 240 WebLocalFrameImpl* localRoot() override; |
| 241 void startAgents() override; |
| 241 void sendPings(const WebURL& destinationURL) override; | 242 void sendPings(const WebURL& destinationURL) override; |
| 242 bool dispatchBeforeUnloadEvent(bool) override; | 243 bool dispatchBeforeUnloadEvent(bool) override; |
| 243 WebURLRequest requestFromHistoryItem(const WebHistoryItem&, | 244 WebURLRequest requestFromHistoryItem(const WebHistoryItem&, |
| 244 WebCachePolicy) const override; | 245 WebCachePolicy) const override; |
| 245 WebURLRequest requestForReload(WebFrameLoadType, | 246 WebURLRequest requestForReload(WebFrameLoadType, |
| 246 const WebURL&) const override; | 247 const WebURL&) const override; |
| 247 void load(const WebURLRequest&, | 248 void load(const WebURLRequest&, |
| 248 WebFrameLoadType, | 249 WebFrameLoadType, |
| 249 const WebHistoryItem&, | 250 const WebHistoryItem&, |
| 250 WebHistoryLoadType, | 251 WebHistoryLoadType, |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 | 496 |
| 496 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 497 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
| 497 WebFrame, | 498 WebFrame, |
| 498 frame, | 499 frame, |
| 499 frame->isWebLocalFrame(), | 500 frame->isWebLocalFrame(), |
| 500 frame.isWebLocalFrame()); | 501 frame.isWebLocalFrame()); |
| 501 | 502 |
| 502 } // namespace blink | 503 } // namespace blink |
| 503 | 504 |
| 504 #endif | 505 #endif |
| OLD | NEW |