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

Side by Side Diff: Source/core/html/HTMLInputElement.h

Issue 278803002: Oilpan: Prepare to move IdTargetObserver and IdTargetObserverRegistry to Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: apply comments Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/html/FormAssociatedElement.cpp ('k') | Source/core/html/HTMLInputElement.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) 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 354
355 virtual bool isOptionalFormControl() const OVERRIDE FINAL { return !isRequir edFormControl(); } 355 virtual bool isOptionalFormControl() const OVERRIDE FINAL { return !isRequir edFormControl(); }
356 virtual bool isRequiredFormControl() const OVERRIDE FINAL; 356 virtual bool isRequiredFormControl() const OVERRIDE FINAL;
357 virtual bool recalcWillValidate() const OVERRIDE FINAL; 357 virtual bool recalcWillValidate() const OVERRIDE FINAL;
358 virtual void requiredAttributeChanged() OVERRIDE FINAL; 358 virtual void requiredAttributeChanged() OVERRIDE FINAL;
359 359
360 void updateType(); 360 void updateType();
361 361
362 virtual void subtreeHasChanged() OVERRIDE FINAL; 362 virtual void subtreeHasChanged() OVERRIDE FINAL;
363 363
364 void setListAttributeTargetObserver(PassOwnPtr<ListAttributeTargetObserver>) ; 364 void setListAttributeTargetObserver(PassOwnPtrWillBeRawPtr<ListAttributeTarg etObserver>);
365 void resetListAttributeTargetObserver(); 365 void resetListAttributeTargetObserver();
366 void parseMaxLengthAttribute(const AtomicString&); 366 void parseMaxLengthAttribute(const AtomicString&);
367 void updateValueIfNeeded(); 367 void updateValueIfNeeded();
368 368
369 // Returns null if this isn't associated with any radio button group. 369 // Returns null if this isn't associated with any radio button group.
370 RadioButtonGroupScope* radioButtonGroupScope() const; 370 RadioButtonGroupScope* radioButtonGroupScope() const;
371 void addToRadioButtonGroup(); 371 void addToRadioButtonGroup();
372 void removeFromRadioButtonGroup(); 372 void removeFromRadioButtonGroup();
373 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) 373 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
374 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE; 374 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE;
(...skipping 19 matching lines...) Expand all
394 bool m_canReceiveDroppedFiles : 1; 394 bool m_canReceiveDroppedFiles : 1;
395 bool m_hasTouchEventHandler : 1; 395 bool m_hasTouchEventHandler : 1;
396 bool m_shouldRevealPassword : 1; 396 bool m_shouldRevealPassword : 1;
397 bool m_needsToUpdateViewValue : 1; 397 bool m_needsToUpdateViewValue : 1;
398 RefPtrWillBeMember<InputType> m_inputType; 398 RefPtrWillBeMember<InputType> m_inputType;
399 RefPtrWillBeMember<InputTypeView> m_inputTypeView; 399 RefPtrWillBeMember<InputTypeView> m_inputTypeView;
400 // The ImageLoader must be owned by this element because the loader code ass umes 400 // The ImageLoader must be owned by this element because the loader code ass umes
401 // that it lives as long as its owning element lives. If we move the loader into 401 // that it lives as long as its owning element lives. If we move the loader into
402 // the ImageInput object we may delete the loader while this element lives o n. 402 // the ImageInput object we may delete the loader while this element lives o n.
403 OwnPtr<HTMLImageLoader> m_imageLoader; 403 OwnPtr<HTMLImageLoader> m_imageLoader;
404 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; 404 OwnPtrWillBeMember<ListAttributeTargetObserver> m_listAttributeTargetObserve r;
405 }; 405 };
406 406
407 } //namespace 407 } //namespace
408 #endif 408 #endif
OLDNEW
« no previous file with comments | « Source/core/html/FormAssociatedElement.cpp ('k') | Source/core/html/HTMLInputElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698