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