| 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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 WebFrameScheduler* Scheduler() const override; | 317 WebFrameScheduler* Scheduler() const override; |
| 318 base::SingleThreadTaskRunner* TimerTaskRunner() override; | 318 base::SingleThreadTaskRunner* TimerTaskRunner() override; |
| 319 base::SingleThreadTaskRunner* LoadingTaskRunner() override; | 319 base::SingleThreadTaskRunner* LoadingTaskRunner() override; |
| 320 base::SingleThreadTaskRunner* UnthrottledTaskRunner() override; | 320 base::SingleThreadTaskRunner* UnthrottledTaskRunner() override; |
| 321 WebInputMethodController* GetInputMethodController() override; | 321 WebInputMethodController* GetInputMethodController() override; |
| 322 | 322 |
| 323 void ExtractSmartClipData(WebRect rect_in_viewport, | 323 void ExtractSmartClipData(WebRect rect_in_viewport, |
| 324 WebString& clip_text, | 324 WebString& clip_text, |
| 325 WebString& clip_html) override; | 325 WebString& clip_html) override; |
| 326 | 326 |
| 327 void AdvanceFocusInForm(WebFocusType) override; |
| 328 |
| 327 void InitializeCoreFrame(Page&, | 329 void InitializeCoreFrame(Page&, |
| 328 FrameOwner*, | 330 FrameOwner*, |
| 329 const AtomicString& name) override; | 331 const AtomicString& name) override; |
| 330 LocalFrame* GetFrame() const override { return frame_.Get(); } | 332 LocalFrame* GetFrame() const override { return frame_.Get(); } |
| 331 | 333 |
| 332 void WillBeDetached() override; | 334 void WillBeDetached() override; |
| 333 void WillDetachParent() override; | 335 void WillDetachParent() override; |
| 334 | 336 |
| 335 static WebLocalFrameImpl* Create(WebTreeScopeType, | 337 static WebLocalFrameImpl* Create(WebTreeScopeType, |
| 336 WebFrameClient*, | 338 WebFrameClient*, |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 | 537 |
| 536 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 538 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
| 537 WebFrame, | 539 WebFrame, |
| 538 frame, | 540 frame, |
| 539 frame->IsWebLocalFrame(), | 541 frame->IsWebLocalFrame(), |
| 540 frame.IsWebLocalFrame()); | 542 frame.IsWebLocalFrame()); |
| 541 | 543 |
| 542 } // namespace blink | 544 } // namespace blink |
| 543 | 545 |
| 544 #endif | 546 #endif |
| OLD | NEW |