| 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 virtual bool rendererIsNeeded(); | 239 virtual bool rendererIsNeeded(); |
| 240 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*) const; | 240 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*) const; |
| 241 virtual PassRefPtr<RenderStyle> customStyleForRenderer(PassRefPtr<RenderStyl
e>); | 241 virtual PassRefPtr<RenderStyle> customStyleForRenderer(PassRefPtr<RenderStyl
e>); |
| 242 virtual void addSearchResult(); | 242 virtual void addSearchResult(); |
| 243 virtual void attach(); | 243 virtual void attach(); |
| 244 virtual void detach(); | 244 virtual void detach(); |
| 245 virtual void minOrMaxAttributeChanged(); | 245 virtual void minOrMaxAttributeChanged(); |
| 246 virtual void stepAttributeChanged(); | 246 virtual void stepAttributeChanged(); |
| 247 virtual void altAttributeChanged(); | 247 virtual void altAttributeChanged(); |
| 248 virtual void srcAttributeChanged(); | 248 virtual void srcAttributeChanged(); |
| 249 virtual void willMoveToNewOwnerDocument(); | |
| 250 virtual bool shouldRespectAlignAttribute(); | 249 virtual bool shouldRespectAlignAttribute(); |
| 251 virtual FileList* files(); | 250 virtual FileList* files(); |
| 252 virtual void setFiles(PassRefPtr<FileList>); | 251 virtual void setFiles(PassRefPtr<FileList>); |
| 253 // Should return true if the given DragData has more than one dropped files. | 252 // Should return true if the given DragData has more than one dropped files. |
| 254 virtual bool receiveDroppedFiles(const DragData*); | 253 virtual bool receiveDroppedFiles(const DragData*); |
| 255 #if ENABLE(FILE_SYSTEM) | 254 #if ENABLE(FILE_SYSTEM) |
| 256 virtual String droppedFileSystemId(); | 255 virtual String droppedFileSystemId(); |
| 257 #endif | 256 #endif |
| 258 virtual Icon* icon() const; | 257 virtual Icon* icon() const; |
| 259 // Should return true if the corresponding renderer for a type can display a
suggested value. | 258 // Should return true if the corresponding renderer for a type can display a
suggested value. |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 private: | 319 private: |
| 321 // Helper for stepUp()/stepDown(). Adds step value * count to the current va
lue. | 320 // Helper for stepUp()/stepDown(). Adds step value * count to the current va
lue. |
| 322 void applyStep(int count, AnyStepHandling, TextFieldEventBehavior, Exception
Code&); | 321 void applyStep(int count, AnyStepHandling, TextFieldEventBehavior, Exception
Code&); |
| 323 | 322 |
| 324 // Raw pointer because the HTMLInputElement object owns this InputType objec
t. | 323 // Raw pointer because the HTMLInputElement object owns this InputType objec
t. |
| 325 HTMLInputElement* m_element; | 324 HTMLInputElement* m_element; |
| 326 }; | 325 }; |
| 327 | 326 |
| 328 } // namespace WebCore | 327 } // namespace WebCore |
| 329 #endif | 328 #endif |
| OLD | NEW |