| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #if ENABLE(INPUT_SPEECH) | 32 #if ENABLE(INPUT_SPEECH) |
| 33 #include "core/rendering/RenderInputSpeech.h" | 33 #include "core/rendering/RenderInputSpeech.h" |
| 34 | 34 |
| 35 #include "core/html/shadow/TextControlInnerElements.h" | 35 #include "core/html/shadow/TextControlInnerElements.h" |
| 36 #include "core/platform/graphics/GraphicsContext.h" | |
| 37 #include "core/rendering/PaintInfo.h" | 36 #include "core/rendering/PaintInfo.h" |
| 38 #include "core/rendering/RenderBox.h" | 37 #include "core/rendering/RenderBox.h" |
| 38 #include "platform/graphics/GraphicsContext.h" |
| 39 | 39 |
| 40 namespace WebCore { | 40 namespace WebCore { |
| 41 | 41 |
| 42 static const float defaultControlFontPixelSize = 13; | 42 static const float defaultControlFontPixelSize = 13; |
| 43 static const float defaultSpeechButtonSize = 16; | 43 static const float defaultSpeechButtonSize = 16; |
| 44 static const float minSpeechButtonSize = 8; | 44 static const float minSpeechButtonSize = 8; |
| 45 static const float maxSpeechButtonSize = 40; | 45 static const float maxSpeechButtonSize = 40; |
| 46 | 46 |
| 47 void RenderInputSpeech::adjustInputFieldSpeechButtonStyle(RenderStyle* style, El
ement*) | 47 void RenderInputSpeech::adjustInputFieldSpeechButtonStyle(RenderStyle* style, El
ement*) |
| 48 { | 48 { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 else if (speechButton->state() == InputFieldSpeechButtonElement::Recognizing
) | 93 else if (speechButton->state() == InputFieldSpeechButtonElement::Recognizing
) |
| 94 image = imageStateWaiting; | 94 image = imageStateWaiting; |
| 95 paintInfo.context->drawImage(image, pixelSnappedIntRect(buttonRect)); | 95 paintInfo.context->drawImage(image, pixelSnappedIntRect(buttonRect)); |
| 96 | 96 |
| 97 return false; | 97 return false; |
| 98 } | 98 } |
| 99 | 99 |
| 100 } // namespace WebCore | 100 } // namespace WebCore |
| 101 | 101 |
| 102 #endif // ENABLE(INPUT_SPEECH) | 102 #endif // ENABLE(INPUT_SPEECH) |
| OLD | NEW |