diff options
Diffstat (limited to 'Source/WebKit/chromium/src/AutofillPopupMenuClient.cpp')
-rw-r--r-- | Source/WebKit/chromium/src/AutofillPopupMenuClient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebKit/chromium/src/AutofillPopupMenuClient.cpp b/Source/WebKit/chromium/src/AutofillPopupMenuClient.cpp index 72cccfcc2..c84ea12f6 100644 --- a/Source/WebKit/chromium/src/AutofillPopupMenuClient.cpp +++ b/Source/WebKit/chromium/src/AutofillPopupMenuClient.cpp @@ -196,7 +196,7 @@ PopupMenuStyle AutofillPopupMenuClient::menuStyle() const return *m_regularStyle; } -int AutofillPopupMenuClient::clientPaddingLeft() const +WebCore::LayoutUnit AutofillPopupMenuClient::clientPaddingLeft() const { // Bug http://crbug.com/7708 seems to indicate the style can be 0. RenderStyle* style = textFieldStyle(); @@ -206,7 +206,7 @@ int AutofillPopupMenuClient::clientPaddingLeft() const return RenderTheme::defaultTheme()->popupInternalPaddingLeft(style); } -int AutofillPopupMenuClient::clientPaddingRight() const +WebCore::LayoutUnit AutofillPopupMenuClient::clientPaddingRight() const { // Bug http://crbug.com/7708 seems to indicate the style can be 0. RenderStyle* style = textFieldStyle(); |