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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 class IntSize; | 51 class IntSize; |
52 class KURL; | 52 class KURL; |
53 class Range; | 53 class Range; |
54 class SharedWorkerRepositoryClientImpl; | 54 class SharedWorkerRepositoryClientImpl; |
55 class TextFinder; | 55 class TextFinder; |
56 class WebAutofillClient; | 56 class WebAutofillClient; |
57 class WebDataSourceImpl; | 57 class WebDataSourceImpl; |
58 class WebDevToolsAgentImpl; | 58 class WebDevToolsAgentImpl; |
59 class WebDevToolsFrontendImpl; | 59 class WebDevToolsFrontendImpl; |
60 class WebFrameClient; | 60 class WebFrameClient; |
| 61 class WebFramelet; |
61 class WebFrameWidget; | 62 class WebFrameWidget; |
62 class WebNode; | 63 class WebNode; |
63 class WebPerformance; | 64 class WebPerformance; |
64 class WebPlugin; | 65 class WebPlugin; |
65 class WebPluginContainerImpl; | 66 class WebPluginContainerImpl; |
66 class WebScriptExecutionCallback; | 67 class WebScriptExecutionCallback; |
67 class WebSuspendableTask; | 68 class WebSuspendableTask; |
68 class WebView; | 69 class WebView; |
69 class WebViewImpl; | 70 class WebViewImpl; |
70 struct FrameLoadRequest; | 71 struct FrameLoadRequest; |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 LocalFrame* frame() const override { return m_frame.get(); } | 265 LocalFrame* frame() const override { return m_frame.get(); } |
265 | 266 |
266 void willBeDetached(); | 267 void willBeDetached(); |
267 void willDetachParent(); | 268 void willDetachParent(); |
268 | 269 |
269 static WebLocalFrameImpl* create(WebTreeScopeType, WebFrameClient*); | 270 static WebLocalFrameImpl* create(WebTreeScopeType, WebFrameClient*); |
270 static WebLocalFrameImpl* createProvisional(WebFrameClient*, WebRemoteFrame*
, WebSandboxFlags, const WebFrameOwnerProperties&); | 271 static WebLocalFrameImpl* createProvisional(WebFrameClient*, WebRemoteFrame*
, WebSandboxFlags, const WebFrameOwnerProperties&); |
271 ~WebLocalFrameImpl() override; | 272 ~WebLocalFrameImpl() override; |
272 | 273 |
273 PassRefPtrWillBeRawPtr<LocalFrame> createChildFrame(const FrameLoadRequest&,
const AtomicString& name, HTMLFrameOwnerElement*); | 274 PassRefPtrWillBeRawPtr<LocalFrame> createChildFrame(const FrameLoadRequest&,
const AtomicString& name, HTMLFrameOwnerElement*); |
| 275 WebFramelet* createFramelet(const WebURL&); |
274 | 276 |
275 void didChangeContentsSize(const IntSize&); | 277 void didChangeContentsSize(const IntSize&); |
276 | 278 |
277 void createFrameView(); | 279 void createFrameView(); |
278 | 280 |
279 static WebLocalFrameImpl* fromFrame(LocalFrame*); | 281 static WebLocalFrameImpl* fromFrame(LocalFrame*); |
280 static WebLocalFrameImpl* fromFrame(LocalFrame&); | 282 static WebLocalFrameImpl* fromFrame(LocalFrame&); |
281 static WebLocalFrameImpl* fromFrameOwnerElement(Element*); | 283 static WebLocalFrameImpl* fromFrameOwnerElement(Element*); |
282 | 284 |
283 // If the frame hosts a PluginDocument, this method returns the WebPluginCon
tainerImpl | 285 // If the frame hosts a PluginDocument, this method returns the WebPluginCon
tainerImpl |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
409 // cleared upon close(). | 411 // cleared upon close(). |
410 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; | 412 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; |
411 #endif | 413 #endif |
412 }; | 414 }; |
413 | 415 |
414 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 416 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
415 | 417 |
416 } // namespace blink | 418 } // namespace blink |
417 | 419 |
418 #endif | 420 #endif |
OLD | NEW |