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

Side by Side Diff: Source/core/html/forms/InputTypeView.cpp

Issue 852083002: Propagate focus type to plugins (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Moved Created 5 years, 11 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/html/forms/InputTypeView.h ('k') | Source/core/html/forms/TextFieldInputType.h » ('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 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) 7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org)
8 * Copyright (C) 2009, 2010, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2009, 2010, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 9 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
10 * 10 *
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 void InputTypeView::blur() 110 void InputTypeView::blur()
111 { 111 {
112 element().defaultBlur(); 112 element().defaultBlur();
113 } 113 }
114 114
115 bool InputTypeView::hasCustomFocusLogic() const 115 bool InputTypeView::hasCustomFocusLogic() const
116 { 116 {
117 return false; 117 return false;
118 } 118 }
119 119
120 void InputTypeView::handleFocusEvent(Element*, FocusType) 120 void InputTypeView::handleFocusEvent(Element*, WebFocusType)
121 { 121 {
122 } 122 }
123 123
124 void InputTypeView::handleBlurEvent() 124 void InputTypeView::handleBlurEvent()
125 { 125 {
126 } 126 }
127 127
128 void InputTypeView::handleFocusInEvent(Element*, FocusType) 128 void InputTypeView::handleFocusInEvent(Element*, WebFocusType)
129 { 129 {
130 } 130 }
131 131
132 void InputTypeView::startResourceLoading() 132 void InputTypeView::startResourceLoading()
133 { 133 {
134 } 134 }
135 135
136 void InputTypeView::closePopupView() 136 void InputTypeView::closePopupView()
137 { 137 {
138 } 138 }
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 { 226 {
227 return 0; 227 return 0;
228 } 228 }
229 229
230 void ClickHandlingState::trace(Visitor* visitor) 230 void ClickHandlingState::trace(Visitor* visitor)
231 { 231 {
232 visitor->trace(checkedRadioButton); 232 visitor->trace(checkedRadioButton);
233 } 233 }
234 234
235 } // namespace blink 235 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/html/forms/InputTypeView.h ('k') | Source/core/html/forms/TextFieldInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698