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

Unified Diff: content/browser/web_contents/web_contents_android.cc

Issue 628333003: Remove implicit conversions from scoped_refptr to T* in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
Index: content/browser/web_contents/web_contents_android.cc
diff --git a/content/browser/web_contents/web_contents_android.cc b/content/browser/web_contents/web_contents_android.cc
index 363c7463986f5e159f794386e5f7b1bc4f43959a..52702a412e4212ed0f6eb4f096851554f3345f16 100644
--- a/content/browser/web_contents/web_contents_android.cc
+++ b/content/browser/web_contents/web_contents_android.cc
@@ -291,7 +291,7 @@ void WebContentsAndroid::DidDeferAfterResponseStarted(
JNIEnv* env = AttachCurrentThread();
std::vector<GURL> entering_stylesheets;
std::string transition_color;
- if (transition_data.response_headers) {
+ if (transition_data.response_headers.get()) {
TransitionRequestManager::ParseTransitionStylesheetsFromHeaders(
transition_data.response_headers,
entering_stylesheets,
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_android.cc ('k') | content/common/gpu/stream_texture_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698