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

Side by Side Diff: content/shell/renderer/test_runner/web_test_proxy.cc

Issue 1015403002: Add test_runner support for new accessibility event (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/shell/renderer/test_runner/web_test_proxy.h" 5 #include "content/shell/renderer/test_runner/web_test_proxy.h"
6 6
7 #include <cctype> 7 #include <cctype>
8 8
9 #include "base/callback_helpers.h" 9 #include "base/callback_helpers.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 break; 748 break;
749 case blink::WebAXEventLoadComplete: 749 case blink::WebAXEventLoadComplete:
750 event_name = "LoadComplete"; 750 event_name = "LoadComplete";
751 break; 751 break;
752 case blink::WebAXEventLocationChanged: 752 case blink::WebAXEventLocationChanged:
753 event_name = "LocationChanged"; 753 event_name = "LocationChanged";
754 break; 754 break;
755 case blink::WebAXEventMenuListItemSelected: 755 case blink::WebAXEventMenuListItemSelected:
756 event_name = "MenuListItemSelected"; 756 event_name = "MenuListItemSelected";
757 break; 757 break;
758 case blink::WebAXEventMenuListItemUnselected:
759 event_name = "MenuListItemUnselected";
760 break;
758 case blink::WebAXEventMenuListValueChanged: 761 case blink::WebAXEventMenuListValueChanged:
759 event_name = "MenuListValueChanged"; 762 event_name = "MenuListValueChanged";
760 break; 763 break;
761 case blink::WebAXEventRowCollapsed: 764 case blink::WebAXEventRowCollapsed:
762 event_name = "RowCollapsed"; 765 event_name = "RowCollapsed";
763 break; 766 break;
764 case blink::WebAXEventRowCountChanged: 767 case blink::WebAXEventRowCountChanged:
765 event_name = "RowCountChanged"; 768 event_name = "RowCountChanged";
766 break; 769 break;
767 case blink::WebAXEventRowExpanded: 770 case blink::WebAXEventRowExpanded:
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
1336 // to cancel the input method's ongoing composition session. 1339 // to cancel the input method's ongoing composition session.
1337 if (web_widget_) 1340 if (web_widget_)
1338 web_widget_->confirmComposition(); 1341 web_widget_->confirmComposition();
1339 } 1342 }
1340 1343
1341 blink::WebString WebTestProxyBase::acceptLanguages() { 1344 blink::WebString WebTestProxyBase::acceptLanguages() {
1342 return blink::WebString::fromUTF8(accept_languages_); 1345 return blink::WebString::fromUTF8(accept_languages_);
1343 } 1346 }
1344 1347
1345 } // namespace content 1348 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698