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

Unified Diff: Source/core/dom/ElementRareData.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, 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/ElementRareData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ElementRareData.h
diff --git a/Source/core/dom/ElementRareData.h b/Source/core/dom/ElementRareData.h
index 602417d203c834b3f45fcf26f205b82722bb3e56..b2657f238fcef40d82cb410bf6ab20b0f504c4c3 100644
--- a/Source/core/dom/ElementRareData.h
+++ b/Source/core/dom/ElementRareData.h
@@ -31,7 +31,6 @@
#include "core/dom/custom/CustomElementDefinition.h"
#include "core/dom/shadow/ElementShadow.h"
#include "core/html/ClassList.h"
-#include "core/html/ime/InputMethodContext.h"
#include "core/style/StyleInheritedData.h"
#include "platform/heap/Handle.h"
#include "wtf/OwnPtr.h"
@@ -112,14 +111,6 @@ public:
m_elementAnimations = elementAnimations;
}
- bool hasInputMethodContext() const { return m_inputMethodContext; }
- InputMethodContext& ensureInputMethodContext(HTMLElement* element)
- {
- if (!m_inputMethodContext)
- m_inputMethodContext = InputMethodContext::create(element);
- return *m_inputMethodContext;
- }
-
bool hasPseudoElements() const;
void clearPseudoElements();
@@ -153,7 +144,6 @@ private:
OwnPtrWillBeMember<ElementShadow> m_shadow;
OwnPtrWillBeMember<NamedNodeMap> m_attributeMap;
OwnPtrWillBeMember<AttrNodeList> m_attrNodeList;
- OwnPtrWillBeMember<InputMethodContext> m_inputMethodContext;
OwnPtrWillBeMember<ElementAnimations> m_elementAnimations;
OwnPtrWillBeMember<InlineCSSStyleDeclaration> m_cssomWrapper;
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/ElementRareData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698