Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: Source/WebCore/html/InputType.h

Issue 12159003: Merge 141195 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/WebCore/html/HTMLInputElement.cpp ('k') | Source/WebCore/html/InputType.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/WebCore/html/HTMLInputElement.cpp ('k') | Source/WebCore/html/InputType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698