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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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; |
247 bool isLoading() const override; | 247 bool isLoading() const override; |
248 bool isResourceLoadInProgress() const override; | 248 bool isResourceLoadInProgress() const override; |
| 249 bool isNavigationScheduled() const override; |
249 void setCommittedFirstRealLoad() override; | 250 void setCommittedFirstRealLoad() override; |
250 void sendOrientationChangeEvent() override; | 251 void sendOrientationChangeEvent() override; |
251 void willShowInstallBannerPrompt(int requestId, const WebVector<WebString>&
platforms, WebAppBannerPromptReply*) override; | 252 void willShowInstallBannerPrompt(int requestId, const WebVector<WebString>&
platforms, WebAppBannerPromptReply*) override; |
252 WebSandboxFlags effectiveSandboxFlags() const override; | 253 WebSandboxFlags effectiveSandboxFlags() const override; |
253 void requestRunTask(WebSuspendableTask*) const override; | 254 void requestRunTask(WebSuspendableTask*) const override; |
254 | 255 |
255 void willBeDetached(); | 256 void willBeDetached(); |
256 void willDetachParent(); | 257 void willDetachParent(); |
257 | 258 |
258 static WebLocalFrameImpl* create(WebTreeScopeType, WebFrameClient*); | 259 static WebLocalFrameImpl* create(WebTreeScopeType, WebFrameClient*); |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 // cleared upon close(). | 401 // cleared upon close(). |
401 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; | 402 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; |
402 #endif | 403 #endif |
403 }; | 404 }; |
404 | 405 |
405 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 406 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
406 | 407 |
407 } // namespace blink | 408 } // namespace blink |
408 | 409 |
409 #endif | 410 #endif |
OLD | NEW |