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

Side by Side Diff: third_party/WebKit/Source/core/paint/FileUploadControlPainter.cpp

Issue 1584903002: Improvement handling of background and outline paint phases (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@PaintPhaseRename
Patch Set: Created 4 years, 11 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/paint/FileUploadControlPainter.h" 5 #include "core/paint/FileUploadControlPainter.h"
6 6
7 #include "core/layout/LayoutButton.h" 7 #include "core/layout/LayoutButton.h"
8 #include "core/layout/LayoutFileUploadControl.h" 8 #include "core/layout/LayoutFileUploadControl.h"
9 #include "core/layout/TextRunConstructor.h" 9 #include "core/layout/TextRunConstructor.h"
10 #include "core/paint/LayoutObjectDrawingRecorder.h" 10 #include "core/paint/LayoutObjectDrawingRecorder.h"
11 #include "core/paint/PaintInfo.h" 11 #include "core/paint/PaintInfo.h"
12 #include "platform/graphics/paint/ClipRecorder.h" 12 #include "platform/graphics/paint/ClipRecorder.h"
13 #include "wtf/Optional.h" 13 #include "wtf/Optional.h"
14 14
15 namespace blink { 15 namespace blink {
16 16
17 const int buttonShadowHeight = 2; 17 const int buttonShadowHeight = 2;
18 18
19 void FileUploadControlPainter::paintObject(const PaintInfo& paintInfo, const Lay outPoint& paintOffset) 19 void FileUploadControlPainter::paintObject(const PaintInfo& paintInfo, const Lay outPoint& paintOffset)
20 { 20 {
21 if (m_layoutFileUploadControl.style()->visibility() != VISIBLE) 21 if (m_layoutFileUploadControl.style()->visibility() != VISIBLE)
22 return; 22 return;
23 23
24 // Push a clip. 24 // Push a clip.
25 Optional<ClipRecorder> clipRecorder; 25 Optional<ClipRecorder> clipRecorder;
26 if (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhase DescendantBlockBackgrounds) { 26 if (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhase DescendantBlockBackgroundsOnly) {
27 IntRect clipRect = enclosingIntRect(LayoutRect( 27 IntRect clipRect = enclosingIntRect(LayoutRect(
28 LayoutPoint(paintOffset.x() + m_layoutFileUploadControl.borderLeft() , paintOffset.y() + m_layoutFileUploadControl.borderTop()), 28 LayoutPoint(paintOffset.x() + m_layoutFileUploadControl.borderLeft() , paintOffset.y() + m_layoutFileUploadControl.borderTop()),
29 m_layoutFileUploadControl.size() + LayoutSize(0, -m_layoutFileUpload Control.borderWidth() + buttonShadowHeight))); 29 m_layoutFileUploadControl.size() + LayoutSize(0, -m_layoutFileUpload Control.borderWidth() + buttonShadowHeight)));
30 if (clipRect.isEmpty()) 30 if (clipRect.isEmpty())
31 return; 31 return;
32 clipRecorder.emplace(paintInfo.context, m_layoutFileUploadControl, Displ ayItem::ClipFileUploadControlRect, LayoutRect(clipRect)); 32 clipRecorder.emplace(paintInfo.context, m_layoutFileUploadControl, Displ ayItem::ClipFileUploadControlRect, LayoutRect(clipRect));
33 } 33 }
34 34
35 if (paintInfo.phase == PaintPhaseForeground && !LayoutObjectDrawingRecorder: :useCachedDrawingIfPossible(paintInfo.context, m_layoutFileUploadControl, paintI nfo.phase, paintOffset)) { 35 if (paintInfo.phase == PaintPhaseForeground && !LayoutObjectDrawingRecorder: :useCachedDrawingIfPossible(paintInfo.context, m_layoutFileUploadControl, paintI nfo.phase, paintOffset)) {
36 const String& displayedFilename = m_layoutFileUploadControl.fileTextValu e(); 36 const String& displayedFilename = m_layoutFileUploadControl.fileTextValu e();
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 LayoutObjectDrawingRecorder recorder(paintInfo.context, m_layoutFileUplo adControl, paintInfo.phase, textRunPaintInfo.bounds, paintOffset); 69 LayoutObjectDrawingRecorder recorder(paintInfo.context, m_layoutFileUplo adControl, paintInfo.phase, textRunPaintInfo.bounds, paintOffset);
70 paintInfo.context.setFillColor(m_layoutFileUploadControl.resolveColor(CS SPropertyColor)); 70 paintInfo.context.setFillColor(m_layoutFileUploadControl.resolveColor(CS SPropertyColor));
71 paintInfo.context.drawBidiText(font, textRunPaintInfo, FloatPoint(roundT oInt(textX), roundToInt(textY))); 71 paintInfo.context.drawBidiText(font, textRunPaintInfo, FloatPoint(roundT oInt(textX), roundToInt(textY)));
72 } 72 }
73 73
74 // Paint the children. 74 // Paint the children.
75 m_layoutFileUploadControl.LayoutBlockFlow::paintObject(paintInfo, paintOffse t); 75 m_layoutFileUploadControl.LayoutBlockFlow::paintObject(paintInfo, paintOffse t);
76 } 76 }
77 77
78 } // namespace blink 78 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/paint/BoxClipper.cpp ('k') | third_party/WebKit/Source/core/paint/InlineFlowBoxPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698