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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 void UsageCountChromeLoadTimes(const WebString& metric) override; | 314 void UsageCountChromeLoadTimes(const WebString& metric) override; |
315 base::SingleThreadTaskRunner* TimerTaskRunner() override; | 315 base::SingleThreadTaskRunner* TimerTaskRunner() override; |
316 base::SingleThreadTaskRunner* LoadingTaskRunner() override; | 316 base::SingleThreadTaskRunner* LoadingTaskRunner() override; |
317 base::SingleThreadTaskRunner* UnthrottledTaskRunner() override; | 317 base::SingleThreadTaskRunner* UnthrottledTaskRunner() override; |
318 WebInputMethodControllerImpl* GetInputMethodController() const override; | 318 WebInputMethodControllerImpl* GetInputMethodController() const override; |
319 | 319 |
320 void ExtractSmartClipData(WebRect rect_in_viewport, | 320 void ExtractSmartClipData(WebRect rect_in_viewport, |
321 WebString& clip_text, | 321 WebString& clip_text, |
322 WebString& clip_html) override; | 322 WebString& clip_html) override; |
323 | 323 |
| 324 void AdvanceFocusInForm(WebFocusType) override; |
| 325 |
324 // WebFrameImplBase methods: | 326 // WebFrameImplBase methods: |
325 void InitializeCoreFrame(Page&, | 327 void InitializeCoreFrame(Page&, |
326 FrameOwner*, | 328 FrameOwner*, |
327 const AtomicString& name) override; | 329 const AtomicString& name) override; |
328 LocalFrame* GetFrame() const override { return frame_.Get(); } | 330 LocalFrame* GetFrame() const override { return frame_.Get(); } |
329 | 331 |
330 void WillBeDetached(); | 332 void WillBeDetached(); |
331 void WillDetachParent(); | 333 void WillDetachParent(); |
332 | 334 |
333 static WebLocalFrameImpl* Create(WebTreeScopeType, | 335 static WebLocalFrameImpl* Create(WebTreeScopeType, |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 | 526 |
525 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 527 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
526 WebFrame, | 528 WebFrame, |
527 frame, | 529 frame, |
528 frame->IsWebLocalFrame(), | 530 frame->IsWebLocalFrame(), |
529 frame.IsWebLocalFrame()); | 531 frame.IsWebLocalFrame()); |
530 | 532 |
531 } // namespace blink | 533 } // namespace blink |
532 | 534 |
533 #endif | 535 #endif |
OLD | NEW |