Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1591)

Unified Diff: third_party/WebKit/Source/web/WebViewImpl.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/WebViewImpl.h
diff --git a/third_party/WebKit/Source/web/WebViewImpl.h b/third_party/WebKit/Source/web/WebViewImpl.h
index 9ee661331aaccfb70c79d3355e6beb796ccbc5b6..c92d459e6f74212753d551b4e83c4dc4553a3bc2 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.h
+++ b/third_party/WebKit/Source/web/WebViewImpl.h
@@ -367,7 +367,7 @@ public:
// Keyboard event to the Right Mouse button down event.
WebInputEventResult sendContextMenuEvent(const WebKeyboardEvent&);
- void showContextMenuAtPoint(float x, float y, PassRefPtrWillBeRawPtr<ContextMenuProvider>);
+ void showContextMenuAtPoint(float x, float y, RawPtr<ContextMenuProvider>);
void showContextMenuForElement(WebElement);
@@ -464,7 +464,7 @@ public:
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(WillBeHeapVector<RawPtrWillBeMember<Node>>&);
+ void enableTapHighlights(HeapVector<Member<Node>>&);
void computeScaleAndScrollForFocusedNode(Node* focusedNode, bool zoomInToLegibleScale, float& scale, IntPoint& scroll, bool& needAnimation);
void animateDoubleTapZoom(const IntPoint&);
@@ -631,7 +631,7 @@ private:
WebViewClient* m_client; // Can be 0 (e.g. unittests, shared workers, etc.)
WebSpellCheckClient* m_spellCheckClient;
- OwnPtrWillBePersistent<ChromeClientImpl> m_chromeClientImpl;
+ Persistent<ChromeClientImpl> m_chromeClientImpl;
ContextMenuClientImpl m_contextMenuClientImpl;
DragClientImpl m_dragClientImpl;
EditorClientImpl m_editorClientImpl;
@@ -646,7 +646,7 @@ private:
// The upper bound on the size when auto-resizing.
IntSize m_maxAutoSize;
- OwnPtrWillBePersistent<Page> m_page;
+ 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()
@@ -719,7 +719,7 @@ private:
// The popup associated with an input/select element.
RefPtr<WebPagePopupImpl> m_pagePopup;
- OwnPtrWillBePersistent<DevToolsEmulator> m_devToolsEmulator;
+ Persistent<DevToolsEmulator> m_devToolsEmulator;
OwnPtr<PageOverlay> m_pageColorOverlay;
// Whether the webview is rendering transparently.
@@ -729,7 +729,7 @@ private:
bool m_tabsToLinks;
// If set, the (plugin) node which has mouse capture.
- RefPtrWillBePersistent<Node> m_mouseCaptureNode;
+ Persistent<Node> m_mouseCaptureNode;
RefPtr<UserGestureToken> m_mouseCaptureGestureToken;
RefPtr<UserGestureToken> m_pointerLockGestureToken;
@@ -749,7 +749,7 @@ private:
WebGestureDevice m_flingSourceDevice;
Vector<OwnPtr<LinkHighlightImpl>> m_linkHighlights;
OwnPtr<WebCompositorAnimationTimeline> m_linkHighlightsTimeline;
- OwnPtrWillBePersistent<FullscreenController> m_fullscreenController;
+ Persistent<FullscreenController> m_fullscreenController;
bool m_showFPSCounter;
WebColor m_baseBackgroundColor;
@@ -764,7 +764,7 @@ private:
FloatSize m_elasticOverscroll;
- RefPtrWillBePersistent<EventListener> m_popupMouseWheelEventListener;
+ Persistent<EventListener> m_popupMouseWheelEventListener;
WebPageImportanceSignals m_pageImportanceSignals;

Powered by Google App Engine
This is Rietveld 408576698