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

Side by Side Diff: Source/WebCore/html/HTMLFormControlElement.h

Issue 6476015: Merge 77114 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 years, 10 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
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, 2008, 2009, 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 using TreeShared<ContainerNode>::ref; 104 using TreeShared<ContainerNode>::ref;
105 using TreeShared<ContainerNode>::deref; 105 using TreeShared<ContainerNode>::deref;
106 106
107 protected: 107 protected:
108 HTMLFormControlElement(const QualifiedName& tagName, Document*, HTMLFormElem ent*); 108 HTMLFormControlElement(const QualifiedName& tagName, Document*, HTMLFormElem ent*);
109 109
110 virtual void parseMappedAttribute(Attribute*); 110 virtual void parseMappedAttribute(Attribute*);
111 virtual void attach(); 111 virtual void attach();
112 virtual void insertedIntoTree(bool deep); 112 virtual void insertedIntoTree(bool deep);
113 virtual void removedFromTree(bool deep); 113 virtual void removedFromTree(bool deep);
114 virtual void insertedIntoDocument();
115 virtual void removedFromDocument();
114 virtual void willMoveToNewOwnerDocument(); 116 virtual void willMoveToNewOwnerDocument();
115 117
116 virtual bool isKeyboardFocusable(KeyboardEvent*) const; 118 virtual bool isKeyboardFocusable(KeyboardEvent*) const;
117 virtual bool isMouseFocusable() const; 119 virtual bool isMouseFocusable() const;
118 120
119 virtual void recalcStyle(StyleChange); 121 virtual void recalcStyle(StyleChange);
120 122
121 virtual void dispatchFocusEvent(); 123 virtual void dispatchFocusEvent();
122 virtual void dispatchBlurEvent(); 124 virtual void dispatchBlurEvent();
123 virtual void detach(); 125 virtual void detach();
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 virtual void handleFocusEvent() { } 228 virtual void handleFocusEvent() { }
227 // Called in dispatchBlurEvent(), after placeholder process, before calling parent's dispatchBlurEvent(). 229 // Called in dispatchBlurEvent(), after placeholder process, before calling parent's dispatchBlurEvent().
228 virtual void handleBlurEvent() { } 230 virtual void handleBlurEvent() { }
229 231
230 RenderTextControl* textRendererAfterUpdateLayout(); 232 RenderTextControl* textRendererAfterUpdateLayout();
231 }; 233 };
232 234
233 } // namespace 235 } // namespace
234 236
235 #endif 237 #endif
OLDNEW
« no previous file with comments | « Source/WebCore/html/FormAssociatedElement.cpp ('k') | Source/WebCore/html/HTMLFormControlElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698