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

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

Issue 1162853002: Remove IME API from Blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove interface in WebWidgets.h Created 5 years, 6 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/core.gypi ('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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 class ClientRect; 48 class ClientRect;
49 class ClientRectList; 49 class ClientRectList;
50 class CustomElementDefinition; 50 class CustomElementDefinition;
51 class DOMStringMap; 51 class DOMStringMap;
52 class DOMTokenList; 52 class DOMTokenList;
53 class Dictionary; 53 class Dictionary;
54 class ElementRareData; 54 class ElementRareData;
55 class ElementShadow; 55 class ElementShadow;
56 class ExceptionState; 56 class ExceptionState;
57 class Image; 57 class Image;
58 class InputMethodContext;
59 class IntSize; 58 class IntSize;
60 class Locale; 59 class Locale;
61 class MutableStylePropertySet; 60 class MutableStylePropertySet;
62 class PropertySetCSSStyleDeclaration; 61 class PropertySetCSSStyleDeclaration;
63 class PseudoElement; 62 class PseudoElement;
64 class ScrollState; 63 class ScrollState;
65 class ScrollToOptions; 64 class ScrollToOptions;
66 class ShadowRoot; 65 class ShadowRoot;
67 class StylePropertySet; 66 class StylePropertySet;
68 67
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 bool hasClass() const; 482 bool hasClass() const;
484 const SpaceSplitString& classNames() const; 483 const SpaceSplitString& classNames() const;
485 484
486 IntSize savedLayerScrollOffset() const; 485 IntSize savedLayerScrollOffset() const;
487 void setSavedLayerScrollOffset(const IntSize&); 486 void setSavedLayerScrollOffset(const IntSize&);
488 487
489 ElementAnimations* elementAnimations() const; 488 ElementAnimations* elementAnimations() const;
490 ElementAnimations& ensureElementAnimations(); 489 ElementAnimations& ensureElementAnimations();
491 bool hasAnimations() const; 490 bool hasAnimations() const;
492 491
493 InputMethodContext& inputMethodContext();
494 bool hasInputMethodContext() const;
495
496 void synchronizeAttribute(const AtomicString& localName) const; 492 void synchronizeAttribute(const AtomicString& localName) const;
497 493
498 MutableStylePropertySet& ensureMutableInlineStyle(); 494 MutableStylePropertySet& ensureMutableInlineStyle();
499 void clearMutableInlineStyleIfEmpty(); 495 void clearMutableInlineStyleIfEmpty();
500 496
501 void setTabIndex(int); 497 void setTabIndex(int);
502 virtual short tabIndex() const override; 498 virtual short tabIndex() const override;
503 499
504 void incrementProxyCount(); 500 void incrementProxyCount();
505 void decrementProxyCount(); 501 void decrementProxyCount();
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
881 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) 877 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&)
882 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ 878 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \
883 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document& document) \ 879 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document& document) \
884 { \ 880 { \
885 return adoptRefWillBeNoop(new T(tagName, document)); \ 881 return adoptRefWillBeNoop(new T(tagName, document)); \
886 } 882 }
887 883
888 } // namespace 884 } // namespace
889 885
890 #endif // Element_h 886 #endif // Element_h
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698