| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
| 8 * met: | 8 * met: |
| 9 * | 9 * |
| 10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 #if ENABLE(FILE_SYSTEM) | 253 #if ENABLE(FILE_SYSTEM) |
| 254 virtual String droppedFileSystemId(); | 254 virtual String droppedFileSystemId(); |
| 255 #endif | 255 #endif |
| 256 virtual Icon* icon() const; | 256 virtual Icon* icon() const; |
| 257 // Should return true if the corresponding renderer for a type can display a
suggested value. | 257 // Should return true if the corresponding renderer for a type can display a
suggested value. |
| 258 virtual bool canSetSuggestedValue(); | 258 virtual bool canSetSuggestedValue(); |
| 259 virtual bool shouldSendChangeEventAfterCheckedChanged(); | 259 virtual bool shouldSendChangeEventAfterCheckedChanged(); |
| 260 virtual bool canSetValue(const String&); | 260 virtual bool canSetValue(const String&); |
| 261 virtual bool storesValueSeparateFromAttribute(); | 261 virtual bool storesValueSeparateFromAttribute(); |
| 262 virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavi
or); | 262 virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavi
or); |
| 263 virtual bool shouldApplyLocaleDirection() const; |
| 263 virtual bool shouldResetOnDocumentActivation(); | 264 virtual bool shouldResetOnDocumentActivation(); |
| 264 virtual bool shouldRespectListAttribute(); | 265 virtual bool shouldRespectListAttribute(); |
| 265 virtual bool shouldRespectSpeechAttribute(); | 266 virtual bool shouldRespectSpeechAttribute(); |
| 266 virtual bool isEnumeratable(); | 267 virtual bool isEnumeratable(); |
| 267 virtual bool isCheckable(); | 268 virtual bool isCheckable(); |
| 268 virtual bool isSteppable() const; | 269 virtual bool isSteppable() const; |
| 269 virtual bool shouldRespectHeightAndWidthAttributes(); | 270 virtual bool shouldRespectHeightAndWidthAttributes(); |
| 270 virtual bool supportsPlaceholder() const; | 271 virtual bool supportsPlaceholder() const; |
| 271 virtual bool supportsReadOnly() const; | 272 virtual bool supportsReadOnly() const; |
| 272 virtual void updateInnerTextValue(); | 273 virtual void updateInnerTextValue(); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 // Helper for stepUp()/stepDown(). Adds step value * count to the current va
lue. | 319 // Helper for stepUp()/stepDown(). Adds step value * count to the current va
lue. |
| 319 void applyStep(int count, AnyStepHandling, TextFieldEventBehavior, Exception
Code&); | 320 void applyStep(int count, AnyStepHandling, TextFieldEventBehavior, Exception
Code&); |
| 320 | 321 |
| 321 // Raw pointer because the HTMLInputElement object owns this InputType objec
t. | 322 // Raw pointer because the HTMLInputElement object owns this InputType objec
t. |
| 322 HTMLInputElement* m_element; | 323 HTMLInputElement* m_element; |
| 323 }; | 324 }; |
| 324 | 325 |
| 325 } // namespace WebCore | 326 } // namespace WebCore |
| 326 | 327 |
| 327 #endif | 328 #endif |
| OLD | NEW |