| OLD | NEW |
| 1 /** | 1 /** |
| 2 * This file is part of the theme implementation for form controls in WebCore. | 2 * This file is part of the theme implementation for form controls in WebCore. |
| 3 * | 3 * |
| 4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc. | 4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 case kSearchFieldPart: | 248 case kSearchFieldPart: |
| 249 return AdjustSearchFieldStyle(style); | 249 return AdjustSearchFieldStyle(style); |
| 250 case kSearchFieldCancelButtonPart: | 250 case kSearchFieldCancelButtonPart: |
| 251 return AdjustSearchFieldCancelButtonStyle(style); | 251 return AdjustSearchFieldCancelButtonStyle(style); |
| 252 default: | 252 default: |
| 253 break; | 253 break; |
| 254 } | 254 } |
| 255 } | 255 } |
| 256 | 256 |
| 257 String LayoutTheme::ExtraDefaultStyleSheet() { | 257 String LayoutTheme::ExtraDefaultStyleSheet() { |
| 258 StringBuilder runtime_css; | 258 return g_empty_string; |
| 259 if (RuntimeEnabledFeatures::contextMenuEnabled()) | |
| 260 runtime_css.Append("menu[type=\"context\" i] { display: none; }"); | |
| 261 return runtime_css.ToString(); | |
| 262 } | 259 } |
| 263 | 260 |
| 264 static String FormatChromiumMediaControlsTime(float time, | 261 static String FormatChromiumMediaControlsTime(float time, |
| 265 float duration, | 262 float duration, |
| 266 bool include_separator) { | 263 bool include_separator) { |
| 267 if (!std::isfinite(time)) | 264 if (!std::isfinite(time)) |
| 268 time = 0; | 265 time = 0; |
| 269 if (!std::isfinite(duration)) | 266 if (!std::isfinite(duration)) |
| 270 duration = 0; | 267 duration = 0; |
| 271 int seconds = static_cast<int>(fabsf(time)); | 268 int seconds = static_cast<int>(fabsf(time)); |
| (...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 // padding - not honored by WinIE, needs to be removed. | 910 // padding - not honored by WinIE, needs to be removed. |
| 914 style.ResetPadding(); | 911 style.ResetPadding(); |
| 915 | 912 |
| 916 // border - honored by WinIE, but looks terrible (just paints in the control | 913 // border - honored by WinIE, but looks terrible (just paints in the control |
| 917 // box and turns off the Windows XP theme) | 914 // box and turns off the Windows XP theme) |
| 918 // for now, we will not honor it. | 915 // for now, we will not honor it. |
| 919 style.ResetBorder(); | 916 style.ResetBorder(); |
| 920 } | 917 } |
| 921 | 918 |
| 922 } // namespace blink | 919 } // namespace blink |
| OLD | NEW |