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

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

Issue 2164493002: Renamed Node::attach to Node::attachLayoutTree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 void accessKeyAction(bool sendMouseEvents) final; 310 void accessKeyAction(bool sendMouseEvents) final;
311 311
312 void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicS tring&) override; 312 void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicS tring&) override;
313 bool isPresentationAttribute(const QualifiedName&) const final; 313 bool isPresentationAttribute(const QualifiedName&) const final;
314 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic String&, MutableStylePropertySet*) final; 314 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic String&, MutableStylePropertySet*) final;
315 void finishParsingChildren() final; 315 void finishParsingChildren() final;
316 void parserDidSetAttributes() final; 316 void parserDidSetAttributes() final;
317 317
318 void copyNonAttributePropertiesFromElement(const Element&) final; 318 void copyNonAttributePropertiesFromElement(const Element&) final;
319 319
320 void attach(const AttachContext& = AttachContext()) final; 320 void attachLayoutTree(const AttachContext& = AttachContext()) final;
321 321
322 void appendToFormData(FormData&) final; 322 void appendToFormData(FormData&) final;
323 String resultForDialogSubmit() final; 323 String resultForDialogSubmit() final;
324 324
325 bool canBeSuccessfulSubmitButton() const final; 325 bool canBeSuccessfulSubmitButton() const final;
326 326
327 void resetImpl() final; 327 void resetImpl() final;
328 bool supportsAutofocus() const final; 328 bool supportsAutofocus() const final;
329 329
330 EventDispatchHandlingState* preDispatchEventHandler(Event*) final; 330 EventDispatchHandlingState* preDispatchEventHandler(Event*) final;
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 // The ImageLoader must be owned by this element because the loader code ass umes 402 // The ImageLoader must be owned by this element because the loader code ass umes
403 // that it lives as long as its owning element lives. If we move the loader into 403 // that it lives as long as its owning element lives. If we move the loader into
404 // the ImageInput object we may delete the loader while this element lives o n. 404 // the ImageInput object we may delete the loader while this element lives o n.
405 Member<HTMLImageLoader> m_imageLoader; 405 Member<HTMLImageLoader> m_imageLoader;
406 Member<ListAttributeTargetObserver> m_listAttributeTargetObserver; 406 Member<ListAttributeTargetObserver> m_listAttributeTargetObserver;
407 }; 407 };
408 408
409 } // namespace blink 409 } // namespace blink
410 410
411 #endif // HTMLInputElement_h 411 #endif // HTMLInputElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698