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

Side by Side Diff: Source/core/dom/Element.h

Issue 1323243002: WIP - Rough draft of style observation in style of apply hooks. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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/Document.cpp ('k') | Source/core/dom/Element.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) 2001 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved. 6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 class Image; 58 class Image;
59 class IntSize; 59 class IntSize;
60 class Locale; 60 class Locale;
61 class MutableStylePropertySet; 61 class MutableStylePropertySet;
62 class PropertySetCSSStyleDeclaration; 62 class PropertySetCSSStyleDeclaration;
63 class PseudoElement; 63 class PseudoElement;
64 class ScrollState; 64 class ScrollState;
65 class ScrollToOptions; 65 class ScrollToOptions;
66 class ShadowRoot; 66 class ShadowRoot;
67 class ShadowRootInit; 67 class ShadowRootInit;
68 class StyleObserver;
68 class StylePropertySet; 69 class StylePropertySet;
69 70
70 enum SpellcheckAttributeState { 71 enum SpellcheckAttributeState {
71 SpellcheckAttributeTrue, 72 SpellcheckAttributeTrue,
72 SpellcheckAttributeFalse, 73 SpellcheckAttributeFalse,
73 SpellcheckAttributeDefault 74 SpellcheckAttributeDefault
74 }; 75 };
75 76
76 enum ElementFlags { 77 enum ElementFlags {
77 TabIndexWasSetExplicitly = 1 << 0, 78 TabIndexWasSetExplicitly = 1 << 0,
(...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after
896 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) 897 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&)
897 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ 898 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \
898 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document& document) \ 899 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document& document) \
899 { \ 900 { \
900 return adoptRefWillBeNoop(new T(tagName, document)); \ 901 return adoptRefWillBeNoop(new T(tagName, document)); \
901 } 902 }
902 903
903 } // namespace 904 } // namespace
904 905
905 #endif // Element_h 906 #endif // Element_h
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698