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

Side by Side Diff: Source/WebCore/html/HTMLInputElement.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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved.
6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 #if ENABLE(DATALIST_ELEMENT) 389 #if ENABLE(DATALIST_ELEMENT)
390 void resetListAttributeTargetObserver(); 390 void resetListAttributeTargetObserver();
391 #endif 391 #endif
392 void parseMaxLengthAttribute(const AtomicString&); 392 void parseMaxLengthAttribute(const AtomicString&);
393 void updateValueIfNeeded(); 393 void updateValueIfNeeded();
394 394
395 // Returns null if this isn't associated with any radio button group. 395 // Returns null if this isn't associated with any radio button group.
396 CheckedRadioButtons* checkedRadioButtons() const; 396 CheckedRadioButtons* checkedRadioButtons() const;
397 void addToRadioButtonGroup(); 397 void addToRadioButtonGroup();
398 void removeFromRadioButtonGroup(); 398 void removeFromRadioButtonGroup();
399 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
400 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE;
401 #endif
399 402
400 AtomicString m_name; 403 AtomicString m_name;
401 String m_valueIfDirty; 404 String m_valueIfDirty;
402 String m_suggestedValue; 405 String m_suggestedValue;
403 int m_size; 406 int m_size;
404 int m_maxLength; 407 int m_maxLength;
405 short m_maxResults; 408 short m_maxResults;
406 bool m_isChecked : 1; 409 bool m_isChecked : 1;
407 bool m_reflectsCheckedAttribute : 1; 410 bool m_reflectsCheckedAttribute : 1;
408 bool m_isIndeterminate : 1; 411 bool m_isIndeterminate : 1;
(...skipping 13 matching lines...) Expand all
422 bool m_hasTouchEventHandler : 1; 425 bool m_hasTouchEventHandler : 1;
423 #endif 426 #endif
424 OwnPtr<InputType> m_inputType; 427 OwnPtr<InputType> m_inputType;
425 #if ENABLE(DATALIST_ELEMENT) 428 #if ENABLE(DATALIST_ELEMENT)
426 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; 429 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver;
427 #endif 430 #endif
428 }; 431 };
429 432
430 } //namespace 433 } //namespace
431 #endif 434 #endif
OLDNEW
« no previous file with comments | « Source/WebCore/html/BaseMultipleFieldsDateAndTimeInputType.cpp ('k') | Source/WebCore/html/HTMLInputElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698