OLD | NEW |
1 /** | 1 /** |
2 * Copyright (C) 2006, 2007, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2010 Apple Inc. All rights reserved. |
3 * (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 3 * (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
4 * Copyright (C) 2010 Google Inc. All rights reserved. | 4 * Copyright (C) 2010 Google Inc. All rights reserved. |
5 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 5 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 14 matching lines...) Expand all Loading... |
25 #include "RenderTextControlSingleLine.h" | 25 #include "RenderTextControlSingleLine.h" |
26 | 26 |
27 #include "CSSFontSelector.h" | 27 #include "CSSFontSelector.h" |
28 #include "CSSValueKeywords.h" | 28 #include "CSSValueKeywords.h" |
29 #include "Chrome.h" | 29 #include "Chrome.h" |
30 #include "Frame.h" | 30 #include "Frame.h" |
31 #include "FrameSelection.h" | 31 #include "FrameSelection.h" |
32 #include "FrameView.h" | 32 #include "FrameView.h" |
33 #include "HTMLNames.h" | 33 #include "HTMLNames.h" |
34 #include "HitTestResult.h" | 34 #include "HitTestResult.h" |
35 #include "LocalizedStrings.h" | |
36 #include "Page.h" | 35 #include "Page.h" |
37 #include "PlatformKeyboardEvent.h" | |
38 #include "RenderLayer.h" | 36 #include "RenderLayer.h" |
39 #include "RenderScrollbar.h" | 37 #include "RenderScrollbar.h" |
40 #include "RenderTheme.h" | 38 #include "RenderTheme.h" |
41 #include "Settings.h" | 39 #include "Settings.h" |
42 #include "StyleResolver.h" | 40 #include "StyleResolver.h" |
43 #include "TextControlInnerElements.h" | 41 #include "TextControlInnerElements.h" |
| 42 #include "core/platform/LocalizedStrings.h" |
| 43 #include "core/platform/PlatformKeyboardEvent.h" |
44 #include "core/platform/graphics/SimpleFontData.h" | 44 #include "core/platform/graphics/SimpleFontData.h" |
45 | 45 |
46 using namespace std; | 46 using namespace std; |
47 | 47 |
48 namespace WebCore { | 48 namespace WebCore { |
49 | 49 |
50 using namespace HTMLNames; | 50 using namespace HTMLNames; |
51 | 51 |
52 RenderTextControlSingleLine::RenderTextControlSingleLine(Element* element) | 52 RenderTextControlSingleLine::RenderTextControlSingleLine(Element* element) |
53 : RenderTextControl(element) | 53 : RenderTextControl(element) |
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 return true; | 474 return true; |
475 return RenderBlock::logicalScroll(direction, granularity, multiplier, stopNo
de); | 475 return RenderBlock::logicalScroll(direction, granularity, multiplier, stopNo
de); |
476 } | 476 } |
477 | 477 |
478 HTMLInputElement* RenderTextControlSingleLine::inputElement() const | 478 HTMLInputElement* RenderTextControlSingleLine::inputElement() const |
479 { | 479 { |
480 return node()->toInputElement(); | 480 return node()->toInputElement(); |
481 } | 481 } |
482 | 482 |
483 } | 483 } |
OLD | NEW |