Bug 121564

Summary: RefPtrHashMap should work with move only types
Product: WebKit Reporter: Anders Carlsson <andersca>
Component: New BugsAssignee: Anders Carlsson <andersca>
Status: RESOLVED FIXED    
Severity: Normal CC: benjamin, cmarcelo, commit-queue
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch kling: review+

Description Anders Carlsson 2013-09-18 12:18:36 PDT
RefPtrHashMap should work with move only types
Comment 1 Anders Carlsson 2013-09-18 12:20:35 PDT
Created attachment 212010 [details]
Patch
Comment 2 WebKit Commit Bot 2013-09-18 12:21:28 PDT
Attachment 212010 [details] did not pass style-queue:

Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source/JavaScriptCore/runtime/VM.cpp', u'Source/WTF/ChangeLog', u'Source/WTF/wtf/RefPtrHashMap.h', u'Source/WebCore/ChangeLog', u'Source/WebCore/bridge/IdentifierRep.cpp', u'Source/WebCore/page/PageGroup.cpp', u'Source/WebKit/mac/ChangeLog', u'Source/WebKit/mac/Plugins/Hosted/ProxyInstance.mm', u'Source/WebKit2/ChangeLog', u'Source/WebKit2/UIProcess/Storage/StorageManager.cpp', u'Source/WebKit2/WebProcess/Storage/StorageNamespaceImpl.cpp']" exit_code: 1
Source/WebCore/page/PageGroup.cpp:268:  Missing spaces around >>  [whitespace/operators] [3]
Source/WTF/wtf/RefPtrHashMap.h:90:  Missing spaces around &&  [whitespace/operators] [3]
Source/WTF/wtf/RefPtrHashMap.h:91:  Missing spaces around &&  [whitespace/operators] [3]
Source/WTF/wtf/RefPtrHashMap.h:96:  Missing spaces around &&  [whitespace/operators] [3]
Source/WTF/wtf/RefPtrHashMap.h:97:  Missing spaces around &&  [whitespace/operators] [3]
Source/WTF/wtf/RefPtrHashMap.h:109:  Missing spaces around &&  [whitespace/operators] [3]
Source/WTF/wtf/RefPtrHashMap.h:112:  Missing spaces around &&  [whitespace/operators] [3]
Source/WebKit2/WebProcess/Storage/StorageNamespaceImpl.cpp:88:  Missing spaces around >>  [whitespace/operators] [3]
Source/WebKit2/UIProcess/Storage/StorageManager.cpp:354:  Missing spaces around >>  [whitespace/operators] [3]
Total errors found: 9 in 12 files


If any of these errors are false positives, please file a bug against check-webkit-style.
Comment 3 Andreas Kling 2013-09-18 12:42:14 PDT
Comment on attachment 212010 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=212010&action=review

r=me but dude...

> Source/JavaScriptCore/runtime/VM.cpp:495
> -    SourceProviderCacheMap::AddResult addResult = sourceProviderCacheMap.add(sourceProvider, 0);
> +    SourceProviderCacheMap::AddResult addResult = sourceProviderCacheMap.add(sourceProvider, nullptr);

auto

>> Source/WebCore/page/PageGroup.cpp:268
>> -    HashMap<RefPtr<SecurityOrigin>, RefPtr<StorageNamespace> >::AddResult result = m_transientLocalStorageMap.add(topOrigin, 0);
>> +    HashMap<RefPtr<SecurityOrigin>, RefPtr<StorageNamespace>>::AddResult result = m_transientLocalStorageMap.add(topOrigin, nullptr);
> 
> Missing spaces around >>  [whitespace/operators] [3]

auto

> Source/WebKit2/UIProcess/Storage/StorageManager.cpp:271
> -    HashMap<RefPtr<SecurityOrigin>, StorageArea*>::AddResult result = m_storageAreaMap.add(securityOrigin, 0);
> +    HashMap<RefPtr<SecurityOrigin>, StorageArea*>::AddResult result = m_storageAreaMap.add(securityOrigin, nullptr);

auto

>> Source/WebKit2/UIProcess/Storage/StorageManager.cpp:354
>> +    HashMap<RefPtr<SecurityOrigin>, RefPtr<StorageArea>>::AddResult result = m_storageAreaMap.add(securityOrigin, nullptr);
> 
> Missing spaces around >>  [whitespace/operators] [3]

auto

>> Source/WebKit2/WebProcess/Storage/StorageNamespaceImpl.cpp:88
>> -    HashMap<RefPtr<WebCore::SecurityOrigin>, RefPtr<StorageAreaMap>>::AddResult result = m_storageAreaMaps.add(securityOrigin.get(), 0);
>> +    HashMap<RefPtr<WebCore::SecurityOrigin>, RefPtr<StorageAreaMap>>::AddResult result = m_storageAreaMaps.add(securityOrigin.get(), nullptr);
> 
> Missing spaces around >>  [whitespace/operators] [3]

auto
Comment 4 Anders Carlsson 2013-09-18 12:51:15 PDT
Committed r156056: <http://trac.webkit.org/changeset/156056>