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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 void sendOrientationChangeEvent() override; | 253 void sendOrientationChangeEvent() override; |
254 void willShowInstallBannerPrompt(int requestId, const WebVector<WebString>&
platforms, WebAppBannerPromptReply*) override; | 254 void willShowInstallBannerPrompt(int requestId, const WebVector<WebString>&
platforms, WebAppBannerPromptReply*) override; |
255 WebSandboxFlags effectiveSandboxFlags() const override; | 255 WebSandboxFlags effectiveSandboxFlags() const override; |
256 void forceSandboxFlags(WebSandboxFlags) override; | 256 void forceSandboxFlags(WebSandboxFlags) override; |
257 void requestRunTask(WebSuspendableTask*) const override; | 257 void requestRunTask(WebSuspendableTask*) const override; |
258 void didCallAddSearchProvider() override; | 258 void didCallAddSearchProvider() override; |
259 void didCallIsSearchProviderInstalled() override; | 259 void didCallIsSearchProviderInstalled() override; |
260 void replaceSelection(const WebString&) override; | 260 void replaceSelection(const WebString&) override; |
261 | 261 |
262 // WebFrameImplBase methods: | 262 // WebFrameImplBase methods: |
263 void initializeCoreFrame(FrameHost*, FrameOwner*, const AtomicString& name,
const AtomicString& fallbackName) override; | 263 void initializeCoreFrame(FrameHost*, FrameOwner*, const AtomicString& name,
const AtomicString& fallbackName, const AtomicString& uniqueName) override; |
264 LocalFrame* frame() const override { return m_frame.get(); } | 264 LocalFrame* frame() const override { return m_frame.get(); } |
265 | 265 |
266 void willBeDetached(); | 266 void willBeDetached(); |
267 void willDetachParent(); | 267 void willDetachParent(); |
268 | 268 |
269 static WebLocalFrameImpl* create(WebTreeScopeType, WebFrameClient*); | 269 static WebLocalFrameImpl* create(WebTreeScopeType, WebFrameClient*); |
270 static WebLocalFrameImpl* createProvisional(WebFrameClient*, WebRemoteFrame*
, WebSandboxFlags, const WebFrameOwnerProperties&); | 270 static WebLocalFrameImpl* createProvisional(WebFrameClient*, WebRemoteFrame*
, WebSandboxFlags, const WebFrameOwnerProperties&); |
271 ~WebLocalFrameImpl() override; | 271 ~WebLocalFrameImpl() override; |
272 | 272 |
273 PassRefPtrWillBeRawPtr<LocalFrame> createChildFrame(const FrameLoadRequest&,
const AtomicString& name, HTMLFrameOwnerElement*); | 273 PassRefPtrWillBeRawPtr<LocalFrame> createChildFrame(const FrameLoadRequest&,
const AtomicString& name, HTMLFrameOwnerElement*); |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
409 // cleared upon close(). | 409 // cleared upon close(). |
410 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; | 410 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; |
411 #endif | 411 #endif |
412 }; | 412 }; |
413 | 413 |
414 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 414 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
415 | 415 |
416 } // namespace blink | 416 } // namespace blink |
417 | 417 |
418 #endif | 418 #endif |
OLD | NEW |