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

Unified Diff: Source/core/page/WindowFeatures.h

Issue 177633011: fixed issue 342591: Uninit Error reported from write at IPC::Channel::ChannelImpl::ProcessOutgoingM… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: update commit message, PTAL Created 6 years, 9 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/WindowFeatures.h
diff --git a/Source/core/page/WindowFeatures.h b/Source/core/page/WindowFeatures.h
index 8605208e1ab80e7724d97f1610cca816d676de19..0f4fc6ce882d8d6759cc52d803612cf92ab2ad30 100644
--- a/Source/core/page/WindowFeatures.h
+++ b/Source/core/page/WindowFeatures.h
@@ -38,9 +38,13 @@ class FloatRect;
struct WindowFeatures {
WindowFeatures()
- : xSet(false)
+ : x(0.0f)
+ , xSet(false)
+ , y(0.0f)
, ySet(false)
+ , width(0.0f)
, widthSet(false)
+ , height(0.0f)
, heightSet(false)
, menuBarVisible(true)
, statusBarVisible(true)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698