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

Side by Side Diff: Source/core/layout/LayoutFullScreen.cpp

Issue 1070143002: [Alignment] Single class for holding the alignment data. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased and got back previous setter names. Created 5 years, 8 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 unified diff | Download patch
« no previous file with comments | « Source/core/layout/LayoutFlexibleBox.cpp ('k') | Source/core/layout/LayoutGrid.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 { 92 {
93 RefPtr<ComputedStyle> fullscreenStyle = ComputedStyle::create(); 93 RefPtr<ComputedStyle> fullscreenStyle = ComputedStyle::create();
94 94
95 // Create a stacking context: 95 // Create a stacking context:
96 fullscreenStyle->setZIndex(INT_MAX); 96 fullscreenStyle->setZIndex(INT_MAX);
97 97
98 fullscreenStyle->setFontDescription(FontDescription()); 98 fullscreenStyle->setFontDescription(FontDescription());
99 fullscreenStyle->font().update(nullptr); 99 fullscreenStyle->font().update(nullptr);
100 100
101 fullscreenStyle->setDisplay(FLEX); 101 fullscreenStyle->setDisplay(FLEX);
102 fullscreenStyle->setJustifyContent(ContentPositionCenter); 102 fullscreenStyle->setJustifyContentPosition(ContentPositionCenter);
103 fullscreenStyle->setAlignItems(ItemPositionCenter); 103 fullscreenStyle->setAlignItemsPosition(ItemPositionCenter);
104 fullscreenStyle->setFlexDirection(FlowColumn); 104 fullscreenStyle->setFlexDirection(FlowColumn);
105 105
106 fullscreenStyle->setPosition(FixedPosition); 106 fullscreenStyle->setPosition(FixedPosition);
107 fullscreenStyle->setLeft(Length(0, blink::Fixed)); 107 fullscreenStyle->setLeft(Length(0, blink::Fixed));
108 fullscreenStyle->setTop(Length(0, blink::Fixed)); 108 fullscreenStyle->setTop(Length(0, blink::Fixed));
109 IntSize viewportSize = document().page()->frameHost().pinchViewport().size() ; 109 IntSize viewportSize = document().page()->frameHost().pinchViewport().size() ;
110 fullscreenStyle->setWidth(Length(viewportSize.width(), blink::Fixed)); 110 fullscreenStyle->setWidth(Length(viewportSize.width(), blink::Fixed));
111 fullscreenStyle->setHeight(Length(viewportSize.height(), blink::Fixed)); 111 fullscreenStyle->setHeight(Length(viewportSize.height(), blink::Fixed));
112 112
113 fullscreenStyle->setBackgroundColor(StyleColor(Color::black)); 113 fullscreenStyle->setBackgroundColor(StyleColor(Color::black));
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 m_placeholder = new LayoutFullScreenPlaceholder(this); 195 m_placeholder = new LayoutFullScreenPlaceholder(this);
196 m_placeholder->setStyle(style); 196 m_placeholder->setStyle(style);
197 if (parent()) { 197 if (parent()) {
198 parent()->addChild(m_placeholder, this); 198 parent()->addChild(m_placeholder, this);
199 parent()->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation( LayoutInvalidationReason::Fullscreen); 199 parent()->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation( LayoutInvalidationReason::Fullscreen);
200 } 200 }
201 } else { 201 } else {
202 m_placeholder->setStyle(style); 202 m_placeholder->setStyle(style);
203 } 203 }
204 } 204 }
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutFlexibleBox.cpp ('k') | Source/core/layout/LayoutGrid.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698