diff options
Diffstat (limited to 'Source/WebKit2/UIProcess/WebMediaCacheManagerProxy.cpp')
-rw-r--r-- | Source/WebKit2/UIProcess/WebMediaCacheManagerProxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebKit2/UIProcess/WebMediaCacheManagerProxy.cpp b/Source/WebKit2/UIProcess/WebMediaCacheManagerProxy.cpp index b8d6ffd8f..425dc91e8 100644 --- a/Source/WebKit2/UIProcess/WebMediaCacheManagerProxy.cpp +++ b/Source/WebKit2/UIProcess/WebMediaCacheManagerProxy.cpp @@ -99,7 +99,7 @@ void WebMediaCacheManagerProxy::didGetHostnamesWithMediaCache(const Vector<Strin } size_t hostnameCount = hostnameList.size(); - Vector<RefPtr<APIObject>> hostnames(hostnameCount); + Vector<RefPtr<APIObject> > hostnames(hostnameCount); for (size_t i = 0; i < hostnameCount; ++i) hostnames[i] = WebString::create(hostnameList[i]); |