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

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

Issue 408883003: Remove shouldUseInputMethod (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: V2 Created 6 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 | « no previous file | Source/core/dom/Element.cpp » ('j') | Source/core/html/HTMLInputElement.h » ('J')
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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 void setPrefix(const AtomicString&, ExceptionState&); 506 void setPrefix(const AtomicString&, ExceptionState&);
507 507
508 void synchronizeAttribute(const AtomicString& localName) const; 508 void synchronizeAttribute(const AtomicString& localName) const;
509 509
510 MutableStylePropertySet& ensureMutableInlineStyle(); 510 MutableStylePropertySet& ensureMutableInlineStyle();
511 void clearMutableInlineStyleIfEmpty(); 511 void clearMutableInlineStyleIfEmpty();
512 512
513 void setTabIndex(int); 513 void setTabIndex(int);
514 virtual short tabIndex() const OVERRIDE; 514 virtual short tabIndex() const OVERRIDE;
515 515
516 bool shouldUseInputMethod();
adamk 2014/07/22 01:10:07 If the only caller is indeed WebViewImpl, I think
517
516 virtual void trace(Visitor*) OVERRIDE; 518 virtual void trace(Visitor*) OVERRIDE;
517 519
518 protected: 520 protected:
519 Element(const QualifiedName& tagName, Document*, ConstructionType); 521 Element(const QualifiedName& tagName, Document*, ConstructionType);
520 522
521 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPr opertyID, CSSValueID identifier); 523 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPr opertyID, CSSValueID identifier);
522 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPr opertyID, double value, CSSPrimitiveValue::UnitType); 524 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPr opertyID, double value, CSSPrimitiveValue::UnitType);
523 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPr opertyID, const String& value); 525 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPr opertyID, const String& value);
524 526
525 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; 527 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) 874 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&)
873 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ 875 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \
874 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document& document) \ 876 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document& document) \
875 { \ 877 { \
876 return adoptRefWillBeNoop(new T(tagName, document)); \ 878 return adoptRefWillBeNoop(new T(tagName, document)); \
877 } 879 }
878 880
879 } // namespace 881 } // namespace
880 882
881 #endif 883 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/Element.cpp » ('j') | Source/core/html/HTMLInputElement.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698