| 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 void usageCountChromeLoadTimes(const WebString& metric) override; | 310 void usageCountChromeLoadTimes(const WebString& metric) override; |
| 311 base::SingleThreadTaskRunner* timerTaskRunner() override; | 311 base::SingleThreadTaskRunner* timerTaskRunner() override; |
| 312 base::SingleThreadTaskRunner* loadingTaskRunner() override; | 312 base::SingleThreadTaskRunner* loadingTaskRunner() override; |
| 313 base::SingleThreadTaskRunner* unthrottledTaskRunner() override; | 313 base::SingleThreadTaskRunner* unthrottledTaskRunner() override; |
| 314 WebInputMethodControllerImpl* inputMethodController() const override; | 314 WebInputMethodControllerImpl* inputMethodController() const override; |
| 315 | 315 |
| 316 void extractSmartClipData(WebRect rectInViewport, | 316 void extractSmartClipData(WebRect rectInViewport, |
| 317 WebString& clipText, | 317 WebString& clipText, |
| 318 WebString& clipHtml) override; | 318 WebString& clipHtml) override; |
| 319 | 319 |
| 320 void advanceFocusInForm(WebFocusType) override; |
| 321 |
| 320 // WebFrameImplBase methods: | 322 // WebFrameImplBase methods: |
| 321 void initializeCoreFrame(Page&, | 323 void initializeCoreFrame(Page&, |
| 322 FrameOwner*, | 324 FrameOwner*, |
| 323 const AtomicString& name) override; | 325 const AtomicString& name) override; |
| 324 LocalFrame* frame() const override { return m_frame.get(); } | 326 LocalFrame* frame() const override { return m_frame.get(); } |
| 325 | 327 |
| 326 void willBeDetached(); | 328 void willBeDetached(); |
| 327 void willDetachParent(); | 329 void willDetachParent(); |
| 328 | 330 |
| 329 static WebLocalFrameImpl* create(WebTreeScopeType, | 331 static WebLocalFrameImpl* create(WebTreeScopeType, |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 | 518 |
| 517 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 519 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
| 518 WebFrame, | 520 WebFrame, |
| 519 frame, | 521 frame, |
| 520 frame->isWebLocalFrame(), | 522 frame->isWebLocalFrame(), |
| 521 frame.isWebLocalFrame()); | 523 frame.isWebLocalFrame()); |
| 522 | 524 |
| 523 } // namespace blink | 525 } // namespace blink |
| 524 | 526 |
| 525 #endif | 527 #endif |
| OLD | NEW |