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/Notifications/WebNotificationManagerProxy.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/WebKit2/UIProcess/Notifications/WebNotificationManagerProxy.h') diff --git a/Source/WebKit2/UIProcess/Notifications/WebNotificationManagerProxy.h b/Source/WebKit2/UIProcess/Notifications/WebNotificationManagerProxy.h index 5890b5c1b..98b472e82 100644 --- a/Source/WebKit2/UIProcess/Notifications/WebNotificationManagerProxy.h +++ b/Source/WebKit2/UIProcess/Notifications/WebNotificationManagerProxy.h @@ -81,9 +81,9 @@ private: WebNotificationProvider m_provider; // Pair comprised of web page ID and the web process's notification ID - HashMap> m_globalNotificationMap; + HashMap > m_globalNotificationMap; // Key pair comprised of web page ID and the web process's notification ID; value pair comprised of global notification ID, and notification object - HashMap, pair>> m_notifications; + HashMap, pair > > m_notifications; }; } // namespace WebKit -- cgit v1.2.1