summaryrefslogtreecommitdiff
path: root/chromium/third_party/WebKit/Source/web/WebViewImpl.h
blob: 354e52ec2f5bf9b76ef714bbf65e474a55166a01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
/*
 * Copyright (C) 2010 Google Inc. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *
 *     * Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above
 * copyright notice, this list of conditions and the following disclaimer
 * in the documentation and/or other materials provided with the
 * distribution.
 *     * Neither the name of Google Inc. nor the names of its
 * contributors may be used to endorse or promote products derived from
 * this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef WebViewImpl_h
#define WebViewImpl_h

#include "core/page/ContextMenuProvider.h"
#include "core/page/EventWithHitTestResults.h"
#include "platform/animation/CompositorAnimationTimeline.h"
#include "platform/geometry/IntPoint.h"
#include "platform/geometry/IntRect.h"
#include "platform/graphics/GraphicsLayer.h"
#include "platform/heap/Handle.h"
#include "public/platform/WebDisplayMode.h"
#include "public/platform/WebFloatSize.h"
#include "public/platform/WebGestureCurveTarget.h"
#include "public/platform/WebGestureEvent.h"
#include "public/platform/WebInputEvent.h"
#include "public/platform/WebInputEventResult.h"
#include "public/platform/WebLayer.h"
#include "public/platform/WebPoint.h"
#include "public/platform/WebRect.h"
#include "public/platform/WebScheduler.h"
#include "public/platform/WebSize.h"
#include "public/platform/WebString.h"
#include "public/platform/WebVector.h"
#include "public/web/WebNavigationPolicy.h"
#include "public/web/WebPageImportanceSignals.h"
#include "public/web/WebView.h"
#include "web/ChromeClientImpl.h"
#include "web/ContextMenuClientImpl.h"
#include "web/EditorClientImpl.h"
#include "web/MediaKeysClientImpl.h"
#include "web/PageWidgetDelegate.h"
#include "web/ResizeViewportAnchor.h"
#include "web/SpellCheckerClientImpl.h"
#include "web/StorageClientImpl.h"
#include "web/WebExport.h"
#include "wtf/Compiler.h"
#include "wtf/HashSet.h"
#include "wtf/RefCounted.h"
#include "wtf/Vector.h"
#include <memory>

namespace blink {

class BrowserControls;
class CompositorAnimationHost;
class DevToolsEmulator;
class Frame;
class FullscreenController;
class InspectorOverlay;
class LinkHighlightImpl;
class PageOverlay;
class PageScaleConstraintsSet;
class PaintLayerCompositor;
class UserGestureToken;
class WebActiveGestureAnimation;
class WebDevToolsAgentImpl;
class WebElement;
class WebInputMethodControllerImpl;
class WebLayerTreeView;
class WebLocalFrame;
class WebLocalFrameImpl;
class CompositorMutatorImpl;
class WebPagePopupImpl;
class WebPlugin;
class WebRemoteFrame;
class WebSettingsImpl;
class WebViewScheduler;

class WEB_EXPORT WebViewImpl final
    : NON_EXPORTED_BASE(public WebView),
      public RefCounted<WebViewImpl>,
      NON_EXPORTED_BASE(public WebGestureCurveTarget),
      public PageWidgetEventHandler,
      public WebScheduler::InterventionReporter,
      public WebViewScheduler::WebViewSchedulerSettings {
 public:
  static WebViewImpl* create(WebViewClient*, WebPageVisibilityState);
  static HashSet<WebViewImpl*>& allInstances();

  class UserGestureNotifier {
   public:
    // If a UserGestureIndicator is created for a user gesture since the last
    // page load and the WebViewImpl's |m_userGestureObserved| is false, the
    // UserGestureNotifier will notify the client and set
    // |m_userGestureObserved| to true.
    UserGestureNotifier(WebViewImpl*);
    ~UserGestureNotifier();

   private:
    Persistent<WebLocalFrameImpl> m_frame;
    bool* const m_userGestureObserved;
  };

  // WebWidget methods:
  void close() override;
  WebSize size() override;
  void resize(const WebSize&) override;
  void resizeVisualViewport(const WebSize&) override;
  void didEnterFullscreen() override;
  void didExitFullscreen() override;

  void setSuppressFrameRequestsWorkaroundFor704763Only(bool) override;
  void beginFrame(double lastFrameTimeMonotonic) override;

  void updateAllLifecyclePhases() override;
  void paint(WebCanvas*, const WebRect&) override;
#if OS(ANDROID)
  void paintIgnoringCompositing(WebCanvas*, const WebRect&) override;
#endif
  void layoutAndPaintAsync(WebLayoutAndPaintAsyncCallback*) override;
  void compositeAndReadbackAsync(
      WebCompositeAndReadbackAsyncCallback*) override;
  void themeChanged() override;
  WebInputEventResult handleInputEvent(const WebCoalescedInputEvent&) override;
  void setCursorVisibilityState(bool isVisible) override;
  bool hasTouchEventHandlersAt(const WebPoint&) override;

  void applyViewportDeltas(const WebFloatSize& visualViewportDelta,
                           const WebFloatSize& layoutViewportDelta,
                           const WebFloatSize& elasticOverscrollDelta,
                           float pageScaleDelta,
                           float browserControlsShownRatioDelta) override;
  void mouseCaptureLost() override;
  void setFocus(bool enable) override;
  WebRange compositionRange() override;
  WebColor backgroundColor() const override;
  WebPagePopup* pagePopup() const override;
  bool selectionBounds(WebRect& anchor, WebRect& focus) const override;
  bool selectionTextDirection(WebTextDirection& start,
                              WebTextDirection& end) const override;
  bool isSelectionAnchorFirst() const override;
  WebRange caretOrSelectionRange() override;
  void setTextDirection(WebTextDirection) override;
  bool isAcceleratedCompositingActive() const override;
  void willCloseLayerTreeView() override;
  void didAcquirePointerLock() override;
  void didNotAcquirePointerLock() override;
  void didLosePointerLock() override;

  // WebView methods:
  virtual bool isWebView() const { return true; }
  void setMainFrame(WebFrame*) override;
  void setCredentialManagerClient(WebCredentialManagerClient*) override;
  void setPrerendererClient(WebPrerendererClient*) override;
  void setSpellCheckClient(WebSpellCheckClient*) override;
  WebSettings* settings() override;
  WebString pageEncoding() const override;
  bool tabsToLinks() const override;
  void setTabsToLinks(bool value) override;
  bool tabKeyCyclesThroughElements() const override;
  void setTabKeyCyclesThroughElements(bool value) override;
  bool isActive() const override;
  void setIsActive(bool value) override;
  void setDomainRelaxationForbidden(bool, const WebString& scheme) override;
  void setWindowFeatures(const WebWindowFeatures&) override;
  void setOpenedByDOM() override;
  void resizeWithBrowserControls(const WebSize&,
                                 float browserControlsHeight,
                                 bool browserControlsShrinkLayout) override;
  WebFrame* mainFrame() override;
  WebFrame* findFrameByName(const WebString& name,
                            WebFrame* relativeToFrame) override;
  WebLocalFrame* focusedFrame() override;
  void setFocusedFrame(WebFrame*) override;
  void focusDocumentView(WebFrame*) override;
  void setInitialFocus(bool reverse) override;
  void clearFocusedElement() override;
  bool scrollFocusedEditableElementIntoRect(const WebRect&) override;
  void smoothScroll(int targetX, int targetY, long durationMs) override;
  void zoomToFindInPageRect(const WebRect&);
  void advanceFocus(bool reverse) override;
  void advanceFocusAcrossFrames(WebFocusType,
                                WebRemoteFrame* from,
                                WebLocalFrame* to) override;
  double zoomLevel() override;
  double setZoomLevel(double) override;
  void zoomLimitsChanged(double minimumZoomLevel,
                         double maximumZoomLevel) override;
  float textZoomFactor() override;
  float setTextZoomFactor(float) override;
  bool zoomToMultipleTargetsRect(const WebRect&) override;
  float pageScaleFactor() const override;
  void setDefaultPageScaleLimits(float minScale, float maxScale) override;
  void setInitialPageScaleOverride(float) override;
  void setMaximumLegibleScale(float) override;
  void setPageScaleFactor(float) override;
  void setVisualViewportOffset(const WebFloatPoint&) override;
  WebFloatPoint visualViewportOffset() const override;
  WebFloatSize visualViewportSize() const override;
  void resetScrollAndScaleState() override;
  void setIgnoreViewportTagScaleLimits(bool) override;
  WebSize contentsPreferredMinimumSize() override;
  void setDisplayMode(WebDisplayMode) override;

  void setDeviceScaleFactor(float) override;
  void setZoomFactorForDeviceScaleFactor(float) override;

  void setDeviceColorProfile(const gfx::ICCProfile&) override;

  void enableAutoResizeMode(const WebSize& minSize,
                            const WebSize& maxSize) override;
  void disableAutoResizeMode() override;
  void performMediaPlayerAction(const WebMediaPlayerAction& action,
                                const WebPoint& location) override;
  void performPluginAction(const WebPluginAction&, const WebPoint&) override;
  void audioStateChanged(bool isAudioPlaying) override;
  WebHitTestResult hitTestResultAt(const WebPoint&) override;
  WebHitTestResult hitTestResultForTap(const WebPoint&,
                                       const WebSize&) override;
  void spellingMarkerOffsetsForTest(WebVector<unsigned>* offsets) override;
  void removeSpellingMarkersUnderWords(
      const WebVector<WebString>& words) override;
  unsigned long createUniqueIdentifierForRequest() override;
  void enableDeviceEmulation(const WebDeviceEmulationParams&) override;
  void disableDeviceEmulation() override;
  WebAXObject accessibilityObject() override;
  void setSelectionColors(unsigned activeBackgroundColor,
                          unsigned activeForegroundColor,
                          unsigned inactiveBackgroundColor,
                          unsigned inactiveForegroundColor) override;
  void performCustomContextMenuAction(unsigned action) override;
  void showContextMenu() override;
  void didCloseContextMenu() override;
  void hidePopups() override;
  void setPageOverlayColor(WebColor) override;
  WebPageImportanceSignals* pageImportanceSignals() override;
  void transferActiveWheelFlingAnimation(
      const WebActiveWheelFlingParameters&) override;
  bool endActiveFlingAnimation() override;
  bool isFlinging() const override { return !!m_gestureAnimation.get(); }
  void setShowPaintRects(bool) override;
  void setShowDebugBorders(bool);
  void setShowFPSCounter(bool) override;
  void setShowScrollBottleneckRects(bool) override;
  void acceptLanguagesChanged() override;

  // WebScheduler::InterventionReporter implementation:
  void ReportIntervention(const WebString& message) override;

  // WebViewScheduler::WebViewSchedulerSettings implementation:
  float expensiveBackgroundThrottlingCPUBudget() override;
  float expensiveBackgroundThrottlingInitialBudget() override;
  float expensiveBackgroundThrottlingMaxBudget() override;
  float expensiveBackgroundThrottlingMaxDelay() override;

  void didUpdateFullscreenSize();

  float defaultMinimumPageScaleFactor() const;
  float defaultMaximumPageScaleFactor() const;
  float minimumPageScaleFactor() const;
  float maximumPageScaleFactor() const;
  float clampPageScaleFactorToLimits(float) const;
  void resetScaleStateImmediately();

  HitTestResult coreHitTestResultAt(const WebPoint&);
  void invalidateRect(const IntRect&);

  void setBaseBackgroundColor(WebColor);
  void setBaseBackgroundColorOverride(WebColor);
  void clearBaseBackgroundColorOverride();
  void setBackgroundColorOverride(WebColor);
  void setZoomFactorOverride(float);
  void setCompositorDeviceScaleFactorOverride(float);
  void setDeviceEmulationTransform(const TransformationMatrix&);
  TransformationMatrix getDeviceEmulationTransformForTesting() const;

  Color baseBackgroundColor() const;
  WebColor backgroundColorOverride() const { return m_backgroundColorOverride; }

  Frame* focusedCoreFrame() const;

  // Returns the currently focused Element or null if no element has focus.
  Element* focusedElement() const;

  static WebViewImpl* fromPage(Page*);

  WebViewClient* client() { return m_client; }

  WebSpellCheckClient* spellCheckClient() { return m_spellCheckClient; }

  // Returns the page object associated with this view. This may be null when
  // the page is shutting down, but will be valid at all other times.
  Page* page() const { return m_page.get(); }

  WebDevToolsAgentImpl* mainFrameDevToolsAgentImpl();

  DevToolsEmulator* devToolsEmulator() const {
    return m_devToolsEmulator.get();
  }

  // Returns the main frame associated with this view. This may be null when
  // the page is shutting down, but will be valid at all other times.
  WebLocalFrameImpl* mainFrameImpl() const;

  // Event related methods:
  void mouseContextMenu(const WebMouseEvent&);
  void mouseDoubleClick(const WebMouseEvent&);

  bool detectContentOnTouch(
      const GestureEventWithHitTestResults& targetedEvent);
  bool startPageScaleAnimation(const IntPoint& targetPosition,
                               bool useAnchor,
                               float newScale,
                               double durationInSeconds);

  // WebGestureCurveTarget implementation for fling.
  bool scrollBy(const WebFloatSize& delta,
                const WebFloatSize& velocity) override;

  // Handles context menu events orignated via the the keyboard. These
  // include the VK_APPS virtual key and the Shift+F10 combine. Code is
  // based on the Webkit function bool WebView::handleContextMenuEvent(WPARAM
  // wParam, LPARAM lParam) in webkit\webkit\win\WebView.cpp. The only
  // significant change in this function is the code to convert from a
  // Keyboard event to the Right Mouse button down event.
  WebInputEventResult sendContextMenuEvent(const WebKeyboardEvent&);

  void showContextMenuAtPoint(float x, float y, ContextMenuProvider*);

  void showContextMenuForElement(WebElement);

  // Notifies the WebView that a load has been committed. isNewNavigation
  // will be true if a new session history item should be created for that
  // load. isNavigationWithinPage will be true if the navigation does
  // not take the user away from the current page.
  void didCommitLoad(bool isNewNavigation, bool isNavigationWithinPage);

  void postLayoutResize(WebLocalFrameImpl* webframe);

  // Indicates two things:
  //   1) This view may have a new layout now.
  //   2) Calling updateAllLifecyclePhases() is a no-op.
  // After calling WebWidget::updateAllLifecyclePhases(), expect to get this
  // notification unless the view did not need a layout.
  void layoutUpdated(WebLocalFrameImpl*);

  void didChangeContentsSize();
  void pageScaleFactorChanged();
  void mainFrameScrollOffsetChanged();

  // Returns true if popup menus should be rendered by the browser, false if
  // they should be rendered by WebKit (which is the default).
  static bool useExternalPopupMenus();

  bool shouldAutoResize() const { return m_shouldAutoResize; }

  IntSize minAutoSize() const { return m_minAutoSize; }

  IntSize maxAutoSize() const { return m_maxAutoSize; }

  void updateMainFrameLayoutSize();
  void updatePageDefinedViewportConstraints(const ViewportDescription&);

  PagePopup* openPagePopup(PagePopupClient*);
  void closePagePopup(PagePopup*);
  void cleanupPagePopup();
  LocalDOMWindow* pagePopupWindow() const;

  // Returns the input event we're currently processing. This is used in some
  // cases where the WebCore DOM event doesn't have the information we need.
  static const WebInputEvent* currentInputEvent() {
    return m_currentInputEvent;
  }

  GraphicsLayer* rootGraphicsLayer();
  void registerViewportLayersWithCompositor();
  PaintLayerCompositor* compositor() const;
  CompositorAnimationTimeline* linkHighlightsTimeline() const {
    return m_linkHighlightsTimeline.get();
  }

  WebViewScheduler* scheduler() const override;
  void setVisibilityState(WebPageVisibilityState, bool) override;

  bool hasOpenedPopup() const { return m_pagePopup.get(); }

  // Called by a full frame plugin inside this view to inform it that its
  // zoom level has been updated.  The plugin should only call this function
  // if the zoom change was triggered by the browser, it's only needed in case
  // a plugin can update its own zoom, say because of its own UI.
  void fullFramePluginZoomLevelChanged(double zoomLevel);

  void computeScaleAndScrollForBlockRect(const WebPoint& hitPoint,
                                         const WebRect& blockRect,
                                         float padding,
                                         float defaultScaleWhenAlreadyLegible,
                                         float& scale,
                                         WebPoint& scroll);
  Node* bestTapNode(const GestureEventWithHitTestResults& targetedTapEvent);
  void enableTapHighlightAtPoint(
      const GestureEventWithHitTestResults& targetedTapEvent);
  void enableTapHighlights(HeapVector<Member<Node>>&);
  void computeScaleAndScrollForFocusedNode(Node* focusedNode,
                                           bool zoomInToLegibleScale,
                                           float& scale,
                                           IntPoint& scroll,
                                           bool& needAnimation);

  void animateDoubleTapZoom(const IntPoint&);

  void enableFakePageScaleAnimationForTesting(bool);
  bool fakeDoubleTapAnimationPendingForTesting() const {
    return m_doubleTapZoomPending;
  }
  IntPoint fakePageScaleAnimationTargetPositionForTesting() const {
    return m_fakePageScaleAnimationTargetPosition;
  }
  float fakePageScaleAnimationPageScaleForTesting() const {
    return m_fakePageScaleAnimationPageScaleFactor;
  }
  bool fakePageScaleAnimationUseAnchorForTesting() const {
    return m_fakePageScaleAnimationUseAnchor;
  }

  void enterFullscreen(LocalFrame&);
  void exitFullscreen(LocalFrame&);
  void fullscreenElementChanged(Element*, Element*);

  // Exposed for the purpose of overriding device metrics.
  void sendResizeEventAndRepaint();

  // Exposed for testing purposes.
  bool hasHorizontalScrollbar();
  bool hasVerticalScrollbar();

  // Exposed for tests.
  unsigned numLinkHighlights() { return m_linkHighlights.size(); }
  LinkHighlightImpl* getLinkHighlight(int i) {
    return m_linkHighlights[i].get();
  }

  WebSettingsImpl* settingsImpl();

  // Returns the bounding box of the block type node touched by the WebPoint.
  WebRect computeBlockBound(const WebPoint&, bool ignoreClipping);

  WebLayerTreeView* layerTreeView() const { return m_layerTreeView; }
  CompositorAnimationHost* animationHost() const {
    return m_animationHost.get();
  }

  bool matchesHeuristicsForGpuRasterizationForTesting() const {
    return m_matchesHeuristicsForGpuRasterization;
  }

  void updateBrowserControlsState(WebBrowserControlsState constraint,
                                  WebBrowserControlsState current,
                                  bool animate) override;

  BrowserControls& browserControls();
  // Called anytime browser controls layout height or content offset have
  // changed.
  void didUpdateBrowserControls();

  void forceNextWebGLContextCreationToFail() override;
  void forceNextDrawingBufferCreationToFail() override;

  CompositorWorkerProxyClient* createCompositorWorkerProxyClient();
  AnimationWorkletProxyClient* createAnimationWorkletProxyClient();

  IntSize mainFrameSize();
  WebDisplayMode displayMode() const { return m_displayMode; }

  PageScaleConstraintsSet& pageScaleConstraintsSet() const;

  FloatSize elasticOverscroll() const { return m_elasticOverscroll; }

  bool isTransparent() const;
  void setIsTransparent(bool value);

  double lastFrameTimeMonotonic() const { return m_lastFrameTimeMonotonic; }

  ChromeClientImpl& chromeClient() const { return *m_chromeClientImpl.get(); }

  // Returns the currently active WebInputMethodController which is the one
  // corresponding to the focused frame. It will return nullptr if there is no
  // focused frame, or if the there is one but it belongs to a different local
  // root.
  WebInputMethodControllerImpl* getActiveWebInputMethodController() const;

 private:
  InspectorOverlay* inspectorOverlay();

  void setPageScaleFactorAndLocation(float, const FloatPoint&);
  void propagateZoomFactorToLocalFrameRoots(Frame*, float);

  void scrollAndRescaleViewports(float scaleFactor,
                                 const IntPoint& mainFrameOrigin,
                                 const FloatPoint& visualViewportOrigin);

  float maximumLegiblePageScale() const;
  void refreshPageScaleFactorAfterLayout();
  IntSize contentsSize() const;

  void performResize();
  void resizeViewWhileAnchored(float browserControlsHeight,
                               bool browserControlsShrinkLayout);

  // Overrides the compositor visibility. See the description of
  // m_overrideCompositorVisibility for more details.
  void setCompositorVisibility(bool);

  // TODO(lfg): Remove once WebViewFrameWidget is deleted.
  void scheduleAnimationForWidget();
  bool getCompositionCharacterBounds(WebVector<WebRect>&) override;

  void updateBaseBackgroundColor();

  friend class WebView;  // So WebView::Create can call our constructor
  friend class WebViewFrameWidget;
  friend class WTF::RefCounted<WebViewImpl>;
  friend void setCurrentInputEventForTest(const WebInputEvent*);

  explicit WebViewImpl(WebViewClient*, WebPageVisibilityState);
  ~WebViewImpl() override;

  void hideSelectPopup();

  HitTestResult hitTestResultForRootFramePos(const IntPoint&);
  HitTestResult hitTestResultForViewportPos(const IntPoint&);

  void configureAutoResizeMode();

  void initializeLayerTreeView();

  void setIsAcceleratedCompositingActive(bool);
  void doComposite();
  void reallocateRenderer();
  void updateLayerTreeViewport();
  void updateLayerTreeBackgroundColor();
  void updateDeviceEmulationTransform();
  void updateLayerTreeDeviceScaleFactor();

  // Helper function: Widens the width of |source| by the specified margins
  // while keeping it smaller than page width.
  WebRect widenRectWithinPageBounds(const WebRect& source,
                                    int targetMargin,
                                    int minimumMargin);

  // PageWidgetEventHandler functions
  void handleMouseLeave(LocalFrame&, const WebMouseEvent&) override;
  void handleMouseDown(LocalFrame&, const WebMouseEvent&) override;
  void handleMouseUp(LocalFrame&, const WebMouseEvent&) override;
  WebInputEventResult handleMouseWheel(LocalFrame&,
                                       const WebMouseWheelEvent&) override;
  WebInputEventResult handleGestureEvent(const WebGestureEvent&) override;
  WebInputEventResult handleKeyEvent(const WebKeyboardEvent&) override;
  WebInputEventResult handleCharEvent(const WebKeyboardEvent&) override;

  WebInputEventResult handleSyntheticWheelFromTouchpadPinchEvent(
      const WebGestureEvent&);

  WebPlugin* focusedPluginIfInputMethodSupported(LocalFrame*);

  WebGestureEvent createGestureScrollEventFromFling(WebInputEvent::Type,
                                                    WebGestureDevice) const;

  void enablePopupMouseWheelEventListener();
  void disablePopupMouseWheelEventListener();

  void cancelPagePopup();
  void updatePageOverlays();

  float deviceScaleFactor() const;

  void setRootGraphicsLayer(GraphicsLayer*);
  void setRootLayer(WebLayer*);
  void attachCompositorAnimationTimeline(CompositorAnimationTimeline*);
  void detachCompositorAnimationTimeline(CompositorAnimationTimeline*);

  LocalFrame* focusedLocalFrameInWidget() const;
  LocalFrame* focusedLocalFrameAvailableForIme() const;

  CompositorMutatorImpl& mutator();

  WebViewClient* m_client;  // Can be 0 (e.g. unittests, shared workers, etc.)
  WebSpellCheckClient* m_spellCheckClient;

  Persistent<ChromeClientImpl> m_chromeClientImpl;
  ContextMenuClientImpl m_contextMenuClientImpl;
  EditorClientImpl m_editorClientImpl;
  SpellCheckerClientImpl m_spellCheckerClientImpl;
  StorageClientImpl m_storageClientImpl;

  WebSize m_size;
  // If true, automatically resize the layout view around its content.
  bool m_shouldAutoResize;
  // The lower bound on the size when auto-resizing.
  IntSize m_minAutoSize;
  // The upper bound on the size when auto-resizing.
  IntSize m_maxAutoSize;

  Persistent<Page> m_page;

  // An object that can be used to manipulate m_page->settings() without linking
  // against WebCore. This is lazily allocated the first time GetWebSettings()
  // is called.
  std::unique_ptr<WebSettingsImpl> m_webSettings;

  // Keeps track of the current zoom level. 0 means no zoom, positive numbers
  // mean zoom in, negative numbers mean zoom out.
  double m_zoomLevel;

  double m_minimumZoomLevel;

  double m_maximumZoomLevel;

  // Additional zoom factor used to scale the content by device scale factor.
  double m_zoomFactorForDeviceScaleFactor;

  // This value, when multiplied by the font scale factor, gives the maximum
  // page scale that can result from automatic zooms.
  float m_maximumLegibleScale;

  // The scale moved to by the latest double tap zoom, if any.
  float m_doubleTapZoomPageScaleFactor;
  // Have we sent a double-tap zoom and not yet heard back the scale?
  bool m_doubleTapZoomPending;

  // Used for testing purposes.
  bool m_enableFakePageScaleAnimationForTesting;
  IntPoint m_fakePageScaleAnimationTargetPosition;
  float m_fakePageScaleAnimationPageScaleFactor;
  bool m_fakePageScaleAnimationUseAnchor;

  float m_compositorDeviceScaleFactorOverride;
  TransformationMatrix m_deviceEmulationTransform;

  // Webkit expects keyPress events to be suppressed if the associated keyDown
  // event was handled. Safari implements this behavior by peeking out the
  // associated WM_CHAR event if the keydown was handled. We emulate
  // this behavior by setting this flag if the keyDown was handled.
  bool m_suppressNextKeypressEvent;

  // TODO(ekaramad): Can we remove this and make sure IME events are not called
  // when there is no page focus?
  // Represents whether or not this object should process incoming IME events.
  bool m_imeAcceptEvents;

  // The popup associated with an input/select element.
  RefPtr<WebPagePopupImpl> m_pagePopup;

  // This stores the last hidden page popup. If a GestureTap attempts to open
  // the popup that is closed by its previous GestureTapDown, the popup remains
  // closed.
  RefPtr<WebPagePopupImpl> m_lastHiddenPagePopup;

  Persistent<DevToolsEmulator> m_devToolsEmulator;
  std::unique_ptr<PageOverlay> m_pageColorOverlay;

  // Whether the webview is rendering transparently.
  bool m_isTransparent;

  // Whether the user can press tab to focus links.
  bool m_tabsToLinks;

  // If set, the (plugin) node which has mouse capture.
  Persistent<Node> m_mouseCaptureNode;
  RefPtr<UserGestureToken> m_mouseCaptureGestureToken;

  WebLayerTreeView* m_layerTreeView;
  std::unique_ptr<CompositorAnimationHost> m_animationHost;

  WebLayer* m_rootLayer;
  GraphicsLayer* m_rootGraphicsLayer;
  GraphicsLayer* m_visualViewportContainerLayer;
  bool m_matchesHeuristicsForGpuRasterization;
  static const WebInputEvent* m_currentInputEvent;

  MediaKeysClientImpl m_mediaKeysClientImpl;
  std::unique_ptr<WebActiveGestureAnimation> m_gestureAnimation;
  WebPoint m_positionOnFlingStart;
  WebPoint m_globalPositionOnFlingStart;
  int m_flingModifier;
  WebGestureDevice m_flingSourceDevice;
  Vector<std::unique_ptr<LinkHighlightImpl>> m_linkHighlights;
  std::unique_ptr<CompositorAnimationTimeline> m_linkHighlightsTimeline;
  std::unique_ptr<FullscreenController> m_fullscreenController;

  WebColor m_baseBackgroundColor;
  bool m_baseBackgroundColorOverrideEnabled;
  WebColor m_baseBackgroundColorOverride;
  WebColor m_backgroundColorOverride;
  float m_zoomFactorOverride;

  bool m_userGestureObserved;
  bool m_shouldDispatchFirstVisuallyNonEmptyLayout;
  bool m_shouldDispatchFirstLayoutAfterFinishedParsing;
  bool m_shouldDispatchFirstLayoutAfterFinishedLoading;
  WebDisplayMode m_displayMode;

  FloatSize m_elasticOverscroll;

  // This is owned by the LayerTreeHostImpl, and should only be used on the
  // compositor thread. The LayerTreeHostImpl is indirectly owned by this
  // class so this pointer should be valid until this class is destructed.
  CrossThreadPersistent<CompositorMutatorImpl> m_mutator;

  Persistent<EventListener> m_popupMouseWheelEventListener;

  WebPageImportanceSignals m_pageImportanceSignals;

  const std::unique_ptr<WebViewScheduler> m_scheduler;

  double m_lastFrameTimeMonotonic;

  // TODO(lfg): This is used in order to disable compositor visibility while
  // the page is still visible. This is needed until the WebView and WebWidget
  // split is complete, since in out-of-process iframes the page can be
  // visible, but the WebView should not be used as a widget.
  bool m_overrideCompositorVisibility;

  Persistent<ResizeViewportAnchor> m_resizeViewportAnchor;
};

// We have no ways to check if the specified WebView is an instance of
// WebViewImpl because WebViewImpl is the only implementation of WebView.
DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);

}  // namespace blink

#endif