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

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

Issue 2286843002: Rename DisplayItem::Type enum constants to Chromium style. (Closed)
Patch Set: Rebasing... Created 4 years, 3 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"
(...skipping 11 matching lines...) Expand all
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 DescendantBlockBackgroundsOnly) { 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, clipRect); 32 clipRecorder.emplace(paintInfo.context, m_layoutFileUploadControl, Displ ayItem::kClipFileUploadControlRect, clipRect);
33 } 33 }
34 34
35 if (paintInfo.phase == PaintPhaseForeground && !LayoutObjectDrawingRecorder: :useCachedDrawingIfPossible(paintInfo.context, m_layoutFileUploadControl, paintI nfo.phase)) { 35 if (paintInfo.phase == PaintPhaseForeground && !LayoutObjectDrawingRecorder: :useCachedDrawingIfPossible(paintInfo.context, m_layoutFileUploadControl, paintI nfo.phase)) {
36 const String& displayedFilename = m_layoutFileUploadControl.fileTextValu e(); 36 const String& displayedFilename = m_layoutFileUploadControl.fileTextValu e();
37 const Font& font = m_layoutFileUploadControl.style()->font(); 37 const Font& font = m_layoutFileUploadControl.style()->font();
38 TextRun textRun = constructTextRun(font, displayedFilename, m_layoutFile UploadControl.styleRef(), RespectDirection | RespectDirectionOverride); 38 TextRun textRun = constructTextRun(font, displayedFilename, m_layoutFile UploadControl.styleRef(), RespectDirection | RespectDirectionOverride);
39 textRun.setExpansionBehavior(TextRun::AllowTrailingExpansion); 39 textRun.setExpansionBehavior(TextRun::AllowTrailingExpansion);
40 40
41 // Determine where the filename should be placed 41 // Determine where the filename should be placed
42 LayoutUnit contentLeft = paintOffset.x() + m_layoutFileUploadControl.bor derLeft() + m_layoutFileUploadControl.paddingLeft(); 42 LayoutUnit contentLeft = paintOffset.x() + m_layoutFileUploadControl.bor derLeft() + m_layoutFileUploadControl.paddingLeft();
(...skipping 26 matching lines...) Expand all
69 LayoutObjectDrawingRecorder recorder(paintInfo.context, m_layoutFileUplo adControl, paintInfo.phase, textRunPaintInfo.bounds); 69 LayoutObjectDrawingRecorder recorder(paintInfo.context, m_layoutFileUplo adControl, paintInfo.phase, textRunPaintInfo.bounds);
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/BoxReflectionUtils.cpp ('k') | third_party/WebKit/Source/core/paint/FilterPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698