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

Unified Diff: content/browser/renderer_host/render_widget_host_impl.h

Issue 1159143008: Fix wrong initialization of renderer_initiated_creation parameter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressing mmenke@'s comments Created 5 years, 6 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/renderer_host/render_widget_host_impl.h
diff --git a/content/browser/renderer_host/render_widget_host_impl.h b/content/browser/renderer_host/render_widget_host_impl.h
index b9fc03ab48175190463c2ecca4f034f6a3db7d14..bb8be8375155d149f76e6fff3c78bb6265337a52 100644
--- a/content/browser/renderer_host/render_widget_host_impl.h
+++ b/content/browser/renderer_host/render_widget_host_impl.h
@@ -478,6 +478,10 @@ class CONTENT_EXPORT RenderWidgetHostImpl
gfx::NativeViewAccessible GetParentNativeViewAccessible();
#endif
+ void set_renderer_initialized(bool renderer_initialized) {
+ renderer_initialized_ = renderer_initialized;
+ }
+
protected:
RenderWidgetHostImpl* AsRenderWidgetHostImpl() override;
@@ -553,10 +557,6 @@ class CONTENT_EXPORT RenderWidgetHostImpl
return --in_flight_event_count_;
}
- void set_renderer_initialized(bool renderer_initialized) {
- renderer_initialized_ = renderer_initialized;
- }
-
bool renderer_initialized() const { return renderer_initialized_; }
// The View associated with the RenderViewHost. The lifetime of this object
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698