Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Unified Diff: sky/engine/web/WebLocalFrameImpl.cpp

Issue 936883002: Connect Sky and Ganesh in SkyShell (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: sort includes Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sky/shell/BUILD.gn » ('j') | sky/shell/shell.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
}
« no previous file with comments | « no previous file | sky/shell/BUILD.gn » ('j') | sky/shell/shell.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698