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

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

Issue 15871005: Avoid N^2 walk placing renderers when building the render tree (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Adding a mitigation for the perf regression to Element::recalcStyle. Created 7 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
« no previous file with comments | « Source/core/dom/shadow/ShadowRoot.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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 enum AutoCompleteSetting { Uninitialized, On, Off }; 300 enum AutoCompleteSetting { Uninitialized, On, Off };
301 301
302 // FIXME: Author shadows should be allowed 302 // FIXME: Author shadows should be allowed
303 // https://bugs.webkit.org/show_bug.cgi?id=92608 303 // https://bugs.webkit.org/show_bug.cgi?id=92608
304 virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; } 304 virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; }
305 305
306 virtual void didAddUserAgentShadowRoot(ShadowRoot*) OVERRIDE; 306 virtual void didAddUserAgentShadowRoot(ShadowRoot*) OVERRIDE;
307 307
308 virtual void willChangeForm() OVERRIDE; 308 virtual void willChangeForm() OVERRIDE;
309 virtual void didChangeForm() OVERRIDE; 309 virtual void didChangeForm() OVERRIDE;
310 static void addToRadioButtonGroupCallback(Element*);
310 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; 311 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
311 virtual void removedFrom(ContainerNode*) OVERRIDE; 312 virtual void removedFrom(ContainerNode*) OVERRIDE;
312 virtual void didMoveToNewDocument(Document* oldDocument) OVERRIDE; 313 virtual void didMoveToNewDocument(Document* oldDocument) OVERRIDE;
313 314
314 virtual bool hasCustomFocusLogic() const OVERRIDE; 315 virtual bool hasCustomFocusLogic() const OVERRIDE;
315 virtual bool isKeyboardFocusable(KeyboardEvent*) const; 316 virtual bool isKeyboardFocusable(KeyboardEvent*) const;
316 virtual bool shouldShowFocusRingOnMouseFocus() const OVERRIDE; 317 virtual bool shouldShowFocusRingOnMouseFocus() const OVERRIDE;
317 virtual bool isEnumeratable() const; 318 virtual bool isEnumeratable() const;
318 virtual bool supportLabels() const OVERRIDE; 319 virtual bool supportLabels() const OVERRIDE;
319 virtual void updateFocusAppearance(bool restorePreviousSelection); 320 virtual void updateFocusAppearance(bool restorePreviousSelection);
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(HTMLNames::inputT ag)); 431 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(HTMLNames::inputT ag));
431 return static_cast<const HTMLInputElement*>(node); 432 return static_cast<const HTMLInputElement*>(node);
432 } 433 }
433 434
434 // This will catch anyone doing an unnecessary cast. 435 // This will catch anyone doing an unnecessary cast.
435 void toHTMLElement(const HTMLElement*); 436 void toHTMLElement(const HTMLElement*);
436 437
437 438
438 } //namespace 439 } //namespace
439 #endif 440 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/shadow/ShadowRoot.cpp ('k') | Source/core/html/HTMLInputElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698