From 2925efd2fcef1f8b9fd48979144877c1a5ec214b Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Tue, 17 Sep 2013 11:01:33 +0200 Subject: Remove C++11 requirement in WebKit2 Removes all use of C++11 specific features in WebKit2. This consists of template> syntax, a few uses of auto, and a single use of std::move. Change-Id: I1bbd356c430802caf5f7440cd0d3bb2ba49ed098 Reviewed-by: Allan Sandfeld Jensen --- Source/WebKit2/UIProcess/WebLoaderClient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/WebKit2/UIProcess/WebLoaderClient.h') diff --git a/Source/WebKit2/UIProcess/WebLoaderClient.h b/Source/WebKit2/UIProcess/WebLoaderClient.h index ce5a31cb3..c3fe2b422 100644 --- a/Source/WebKit2/UIProcess/WebLoaderClient.h +++ b/Source/WebKit2/UIProcess/WebLoaderClient.h @@ -86,7 +86,7 @@ public: void processDidBecomeResponsive(WebPageProxy*); void processDidCrash(WebPageProxy*); - void didChangeBackForwardList(WebPageProxy*, WebBackForwardListItem* addedItem, Vector>* removedItems); + void didChangeBackForwardList(WebPageProxy*, WebBackForwardListItem* addedItem, Vector >* removedItems); bool shouldGoToBackForwardListItem(WebPageProxy*, WebBackForwardListItem*); void willGoToBackForwardListItem(WebPageProxy*, WebBackForwardListItem*, APIObject*); -- cgit v1.2.1