| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 int findMatchMarkersVersion() const override; | 284 int findMatchMarkersVersion() const override; |
| 285 WebFloatRect activeFindMatchRect() override; | 285 WebFloatRect activeFindMatchRect() override; |
| 286 void findMatchRects(WebVector<WebFloatRect>&) override; | 286 void findMatchRects(WebVector<WebFloatRect>&) override; |
| 287 int selectNearestFindMatch(const WebFloatPoint&, | 287 int selectNearestFindMatch(const WebFloatPoint&, |
| 288 WebRect* selectionRect) override; | 288 WebRect* selectionRect) override; |
| 289 float distanceToNearestFindMatch(const WebFloatPoint&) override; | 289 float distanceToNearestFindMatch(const WebFloatPoint&) override; |
| 290 void setTickmarks(const WebVector<WebRect>&) override; | 290 void setTickmarks(const WebVector<WebRect>&) override; |
| 291 WebFrameWidgetBase* frameWidget() const override; | 291 WebFrameWidgetBase* frameWidget() const override; |
| 292 void copyImageAt(const WebPoint&) override; | 292 void copyImageAt(const WebPoint&) override; |
| 293 void saveImageAt(const WebPoint&) override; | 293 void saveImageAt(const WebPoint&) override; |
| 294 void setEngagementLevel(mojom::EngagementLevel) override; |
| 294 void clearActiveFindMatch() override; | 295 void clearActiveFindMatch() override; |
| 295 void usageCountChromeLoadTimes(const WebString& metric) override; | 296 void usageCountChromeLoadTimes(const WebString& metric) override; |
| 296 | 297 |
| 297 // WebFrameImplBase methods: | 298 // WebFrameImplBase methods: |
| 298 void initializeCoreFrame(FrameHost*, | 299 void initializeCoreFrame(FrameHost*, |
| 299 FrameOwner*, | 300 FrameOwner*, |
| 300 const AtomicString& name, | 301 const AtomicString& name, |
| 301 const AtomicString& uniqueName) override; | 302 const AtomicString& uniqueName) override; |
| 302 LocalFrame* frame() const override { return m_frame.get(); } | 303 LocalFrame* frame() const override { return m_frame.get(); } |
| 303 | 304 |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 | 475 |
| 475 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 476 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
| 476 WebFrame, | 477 WebFrame, |
| 477 frame, | 478 frame, |
| 478 frame->isWebLocalFrame(), | 479 frame->isWebLocalFrame(), |
| 479 frame.isWebLocalFrame()); | 480 frame.isWebLocalFrame()); |
| 480 | 481 |
| 481 } // namespace blink | 482 } // namespace blink |
| 482 | 483 |
| 483 #endif | 484 #endif |
| OLD | NEW |