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 --- .../WebProcess/ApplicationCache/WebApplicationCacheManager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.cpp') diff --git a/Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.cpp b/Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.cpp index 484790402..0d6211423 100644 --- a/Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.cpp +++ b/Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.cpp @@ -53,15 +53,15 @@ WebApplicationCacheManager::WebApplicationCacheManager(ChildProcess* childProces void WebApplicationCacheManager::getApplicationCacheOrigins(uint64_t callbackID) { - HashSet> origins; + HashSet > origins; cacheStorage().getOriginsWithCache(origins); Vector identifiers; identifiers.reserveCapacity(origins.size()); - HashSet>::iterator end = origins.end(); - HashSet>::iterator i = origins.begin(); + HashSet >::iterator end = origins.end(); + HashSet >::iterator i = origins.begin(); for (; i != end; ++i) { RefPtr origin = *i; -- cgit v1.2.1