| Index: sky/engine/web/WebLocalFrameImpl.cpp
|
| diff --git a/sky/engine/web/WebLocalFrameImpl.cpp b/sky/engine/web/WebLocalFrameImpl.cpp
|
| index 8f2c477bd1f09ff88dd9c0c0290e02f0ccd5613d..0701e4378e724e4e2050de8b595cc9e9d7607076 100644
|
| --- a/sky/engine/web/WebLocalFrameImpl.cpp
|
| +++ b/sky/engine/web/WebLocalFrameImpl.cpp
|
| @@ -259,13 +259,13 @@ void WebLocalFrameImpl::collectGarbage()
|
|
|
| void WebLocalFrameImpl::load(const WebURL& url, mojo::ScopedDataPipeConsumerHandle responseStream)
|
| {
|
| - frame()->mojoLoader().init(url);
|
| - frame()->mojoLoader().parse(responseStream.Pass());
|
| + frame()->mojoLoader().init(url);
|
| + frame()->mojoLoader().parse(responseStream.Pass());
|
| }
|
|
|
| void WebLocalFrameImpl::load(const WebURL& url)
|
| {
|
| - frame()->mojoLoader().init(url);
|
| + frame()->mojoLoader().init(url);
|
| m_fetcher = adoptPtr(new MojoFetcher(this, url));
|
| }
|
|
|
| @@ -273,7 +273,7 @@ void WebLocalFrameImpl::OnReceivedResponse(mojo::URLResponsePtr response)
|
| {
|
| m_fetcher.clear();
|
| if (!response->body.is_valid())
|
| - LOG(FATAL) << "Response has no body.";
|
| + LOG(FATAL) << "Response has no body.";
|
| frame()->mojoLoader().parse(response->body.Pass());
|
| }
|
|
|
|
|