Bug 78790

Summary: Build Fix: R107894 breaks Chromium Linux Build.
Product: WebKit Reporter: yosin
Component: WebKit Misc.Assignee: yosin
Status: RESOLVED FIXED    
Severity: Normal CC: dcheng, noel.gordon, tkent
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on: 79865    
Bug Blocks:    
Attachments:
Description Flags
Patch 1
none
Patch 2
none
Patch 3 none

Comment 1 yosin 2012-02-16 02:26:30 PST
Created attachment 127333 [details]
Patch 1
Comment 2 yosin 2012-02-16 02:32:10 PST
Created attachment 127334 [details]
Patch 2
Comment 3 Kent Tamura 2012-02-16 02:41:58 PST
Comment on attachment 127334 [details]
Patch 2

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

> Source/WebKit/chromium/src/WebDragData.cpp:72
> -    const HashSet<String>& types = m_private->types();
> +    const DOMStringList& types = *m_private->types();

We need to do:
RefPtr<DOMStringList> types = m_private->types();
Comment 4 yosin 2012-02-16 02:44:51 PST
Created attachment 127342 [details]
Patch 3
Comment 5 Kent Tamura 2012-02-16 02:46:30 PST
Comment on attachment 127342 [details]
Patch 3

Clearing flags on attachment: 127342

Committed r107917: <http://trac.webkit.org/changeset/107917>
Comment 6 Kent Tamura 2012-02-16 02:46:36 PST
All reviewed patches have been landed.  Closing bug.