diff options
Diffstat (limited to 'Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.cpp')
| -rw-r--r-- | Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| 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<RefPtr<SecurityOrigin>> origins; +    HashSet<RefPtr<SecurityOrigin> > origins;      cacheStorage().getOriginsWithCache(origins);      Vector<SecurityOriginData> identifiers;      identifiers.reserveCapacity(origins.size()); -    HashSet<RefPtr<SecurityOrigin>>::iterator end = origins.end(); -    HashSet<RefPtr<SecurityOrigin>>::iterator i = origins.begin(); +    HashSet<RefPtr<SecurityOrigin> >::iterator end = origins.end(); +    HashSet<RefPtr<SecurityOrigin> >::iterator i = origins.begin();      for (; i != end; ++i) {          RefPtr<SecurityOrigin> origin = *i; | 
