| Index: third_party/WebKit/Source/core/layout/LayoutFileUploadControl.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutFileUploadControl.cpp b/third_party/WebKit/Source/core/layout/LayoutFileUploadControl.cpp
|
| index 3e89e0301d383feafddf48718aa4042859a6374e..1e8669e805a79caeb08cbee7bf55a81dd252b8c3 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutFileUploadControl.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutFileUploadControl.cpp
|
| @@ -82,8 +82,8 @@ void LayoutFileUploadControl::paintObject(
|
| void LayoutFileUploadControl::computeIntrinsicLogicalWidths(
|
| LayoutUnit& minLogicalWidth,
|
| LayoutUnit& maxLogicalWidth) const {
|
| - // Figure out how big the filename space needs to be for a given number of characters
|
| - // (using "0" as the nominal character).
|
| + // Figure out how big the filename space needs to be for a given number of
|
| + // characters (using "0" as the nominal character).
|
| const UChar character = '0';
|
| const String characterAsString = String(&character, 1);
|
| const Font& font = style()->font();
|
| @@ -158,7 +158,8 @@ PositionWithAffinity LayoutFileUploadControl::positionForPoint(
|
| }
|
|
|
| HTMLInputElement* LayoutFileUploadControl::uploadButton() const {
|
| - // FIXME: This should be on HTMLInputElement as an API like innerButtonElement().
|
| + // FIXME: This should be on HTMLInputElement as an API like
|
| + // innerButtonElement().
|
| HTMLInputElement* input = toHTMLInputElement(node());
|
| Node* buttonNode = input->userAgentShadowRoot()->firstChild();
|
| return isHTMLInputElement(buttonNode) ? toHTMLInputElement(buttonNode) : 0;
|
|
|