| 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 base::SingleThreadTaskRunner* timerTaskRunner() override; | 307 base::SingleThreadTaskRunner* timerTaskRunner() override; |
| 308 base::SingleThreadTaskRunner* loadingTaskRunner() override; | 308 base::SingleThreadTaskRunner* loadingTaskRunner() override; |
| 309 base::SingleThreadTaskRunner* unthrottledTaskRunner() override; | 309 base::SingleThreadTaskRunner* unthrottledTaskRunner() override; |
| 310 WebInputMethodControllerImpl* inputMethodController() const override; | 310 WebInputMethodControllerImpl* inputMethodController() const override; |
| 311 | 311 |
| 312 void extractSmartClipData(WebRect rectInViewport, | 312 void extractSmartClipData(WebRect rectInViewport, |
| 313 WebString& clipText, | 313 WebString& clipText, |
| 314 WebString& clipHtml) override; | 314 WebString& clipHtml) override; |
| 315 | 315 |
| 316 // WebFrameImplBase methods: | 316 // WebFrameImplBase methods: |
| 317 void initializeCoreFrame(FrameHost*, | 317 void initializeCoreFrame(Page&, |
| 318 FrameOwner*, | 318 FrameOwner*, |
| 319 const AtomicString& name) override; | 319 const AtomicString& name) override; |
| 320 LocalFrame* frame() const override { return m_frame.get(); } | 320 LocalFrame* frame() const override { return m_frame.get(); } |
| 321 | 321 |
| 322 void willBeDetached(); | 322 void willBeDetached(); |
| 323 void willDetachParent(); | 323 void willDetachParent(); |
| 324 | 324 |
| 325 static WebLocalFrameImpl* create(WebTreeScopeType, | 325 static WebLocalFrameImpl* create(WebTreeScopeType, |
| 326 WebFrameClient*, | 326 WebFrameClient*, |
| 327 blink::InterfaceProvider*, | 327 blink::InterfaceProvider*, |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 | 505 |
| 506 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 506 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
| 507 WebFrame, | 507 WebFrame, |
| 508 frame, | 508 frame, |
| 509 frame->isWebLocalFrame(), | 509 frame->isWebLocalFrame(), |
| 510 frame.isWebLocalFrame()); | 510 frame.isWebLocalFrame()); |
| 511 | 511 |
| 512 } // namespace blink | 512 } // namespace blink |
| 513 | 513 |
| 514 #endif | 514 #endif |
| OLD | NEW |