| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const
override; | 228 virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const
override; |
| 229 virtual WebString layerTreeAsText(bool showDebugInfo = false) const override
; | 229 virtual WebString layerTreeAsText(bool showDebugInfo = false) const override
; |
| 230 | 230 |
| 231 // WebLocalFrame methods: | 231 // WebLocalFrame methods: |
| 232 virtual void initializeToReplaceRemoteFrame(WebRemoteFrame*, const WebString
& name, WebSandboxFlags) override; | 232 virtual void initializeToReplaceRemoteFrame(WebRemoteFrame*, const WebString
& name, WebSandboxFlags) override; |
| 233 virtual void setAutofillClient(WebAutofillClient*) override; | 233 virtual void setAutofillClient(WebAutofillClient*) override; |
| 234 virtual WebAutofillClient* autofillClient() override; | 234 virtual WebAutofillClient* autofillClient() override; |
| 235 virtual void setDevToolsAgentClient(WebDevToolsAgentClient*) override; | 235 virtual void setDevToolsAgentClient(WebDevToolsAgentClient*) override; |
| 236 virtual WebDevToolsAgent* devToolsAgent() override; | 236 virtual WebDevToolsAgent* devToolsAgent() override; |
| 237 virtual void sendPings(const WebNode& linkNode, const WebURL& destinationURL
) override; | 237 virtual void sendPings(const WebNode& linkNode, const WebURL& destinationURL
) override; |
| 238 virtual WebURLRequest requestFromHistoryItem(const WebHistoryItem&, WebURLRe
quest::CachePolicy) |
| 239 const override; |
| 240 virtual WebURLRequest requestForReload(WebFrameLoadType, const WebURL&) cons
t override; |
| 241 virtual void load(const WebURLRequest&, WebFrameLoadType, const WebHistoryIt
em&, |
| 242 WebHistoryLoadType) override; |
| 238 virtual bool isLoading() const override; | 243 virtual bool isLoading() const override; |
| 239 virtual bool isResourceLoadInProgress() const override; | 244 virtual bool isResourceLoadInProgress() const override; |
| 240 virtual void setCommittedFirstRealLoad() override; | 245 virtual void setCommittedFirstRealLoad() override; |
| 241 virtual void sendOrientationChangeEvent() override; | 246 virtual void sendOrientationChangeEvent() override; |
| 242 virtual void willShowInstallBannerPrompt(int requestId, const WebVector<WebS
tring>& platforms, WebAppBannerPromptReply*) override; | 247 virtual void willShowInstallBannerPrompt(int requestId, const WebVector<WebS
tring>& platforms, WebAppBannerPromptReply*) override; |
| 243 void requestRunTask(WebSuspendableTask*) const override; | 248 void requestRunTask(WebSuspendableTask*) const override; |
| 244 | 249 |
| 245 void willBeDetached(); | 250 void willBeDetached(); |
| 246 void willDetachParent(); | 251 void willDetachParent(); |
| 247 | 252 |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 GC_PLUGIN_IGNORE("340522") | 396 GC_PLUGIN_IGNORE("340522") |
| 392 Persistent<WebLocalFrameImpl> m_selfKeepAlive; | 397 Persistent<WebLocalFrameImpl> m_selfKeepAlive; |
| 393 #endif | 398 #endif |
| 394 }; | 399 }; |
| 395 | 400 |
| 396 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 401 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
| 397 | 402 |
| 398 } // namespace blink | 403 } // namespace blink |
| 399 | 404 |
| 400 #endif | 405 #endif |
| OLD | NEW |