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

Side by Side Diff: third_party/WebKit/Source/core/html/forms/RadioInputType.h

Issue 1628283002: posinset and setsize for input type, radio, exposed in AX tree (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added AXRadioInput Created 4 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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 bool valueMissing(const String&) const override; 45 bool valueMissing(const String&) const override;
46 String valueMissingText() const override; 46 String valueMissingText() const override;
47 void handleClickEvent(MouseEvent*) override; 47 void handleClickEvent(MouseEvent*) override;
48 void handleKeydownEvent(KeyboardEvent*) override; 48 void handleKeydownEvent(KeyboardEvent*) override;
49 void handleKeyupEvent(KeyboardEvent*) override; 49 void handleKeyupEvent(KeyboardEvent*) override;
50 bool isKeyboardFocusable() const override; 50 bool isKeyboardFocusable() const override;
51 bool shouldSendChangeEventAfterCheckedChanged() override; 51 bool shouldSendChangeEventAfterCheckedChanged() override;
52 PassOwnPtrWillBeRawPtr<ClickHandlingState> willDispatchClick() override; 52 PassOwnPtrWillBeRawPtr<ClickHandlingState> willDispatchClick() override;
53 void didDispatchClick(Event*, const ClickHandlingState&) override; 53 void didDispatchClick(Event*, const ClickHandlingState&) override;
54 bool shouldAppearIndeterminate() const override; 54 bool shouldAppearIndeterminate() const override;
55 bool isRadioButton() const override;
55 56
56 HTMLInputElement* findNextFocusableRadioButtonInGroup(HTMLInputElement*, boo l); 57 HTMLInputElement* findNextFocusableRadioButtonInGroup(HTMLInputElement*, boo l);
57 }; 58 };
58 59
59 } // namespace blink 60 } // namespace blink
60 61
61 #endif // RadioInputType_h 62 #endif // RadioInputType_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698