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

Unified Diff: Source/web/WebViewImpl.h

Issue 843683005: Fix a bit of C++11 in web/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 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: Source/web/WebViewImpl.h
diff --git a/Source/web/WebViewImpl.h b/Source/web/WebViewImpl.h
index 30c0e2ec8fc0b2480a6055f88432e4582f078442..5264cf5ee2394636760f59265516a251cc41c9a7 100644
--- a/Source/web/WebViewImpl.h
+++ b/Source/web/WebViewImpl.h
@@ -445,7 +445,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(WillBeHeapVector<RawPtrWillBeMember<Node>>&);
void computeScaleAndScrollForFocusedNode(Node* focusedNode, float& scale, IntPoint& scroll, bool& needAnimation);
void animateDoubleTapZoom(const IntPoint&);
@@ -728,7 +728,7 @@ private:
WebPoint m_globalPositionOnFlingStart;
int m_flingModifier;
bool m_flingSourceDevice;
- Vector<OwnPtr<LinkHighlight> > m_linkHighlights;
+ Vector<OwnPtr<LinkHighlight>> m_linkHighlights;
OwnPtrWillBePersistent<FullscreenController> m_fullscreenController;
bool m_showFPSCounter;

Powered by Google App Engine
This is Rietveld 408576698