I'd like to remove blink::WebURLResponse::initialize() and just allocate m_private in the constructor.My justification is that I keep forgetting to call initialize() and I SEGV.Any objections?While I'm at it I'd like to use a unique_ptr for m_private since the class devotes a non-zero number of lines to emulating unique_ptr semantics. Is this controversial?
This change makes sense. What Adam said. WebURLRequest could benefit from the same change. There are a bunch others too, IIRC.
-Darin