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

Side by Side Diff: components/test_runner/web_test_proxy.cc

Issue 1375703002: Fire accessibility hover events when the touch exploration flag is set. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use asserts instead of checks in test Created 5 years, 2 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 | content/browser/accessibility/touch_accessibility_aura_browsertest.cc » ('j') | 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 "components/test_runner/web_test_proxy.h" 5 #include "components/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 801 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 break; 812 break;
813 case blink::WebAXEventChildrenChanged: 813 case blink::WebAXEventChildrenChanged:
814 event_name = "ChildrenChanged"; 814 event_name = "ChildrenChanged";
815 break; 815 break;
816 case blink::WebAXEventFocus: 816 case blink::WebAXEventFocus:
817 event_name = "Focus"; 817 event_name = "Focus";
818 break; 818 break;
819 case blink::WebAXEventHide: 819 case blink::WebAXEventHide:
820 event_name = "Hide"; 820 event_name = "Hide";
821 break; 821 break;
822 case blink::WebAXEventHover:
823 event_name = "Hover";
824 break;
822 case blink::WebAXEventInvalidStatusChanged: 825 case blink::WebAXEventInvalidStatusChanged:
823 event_name = "InvalidStatusChanged"; 826 event_name = "InvalidStatusChanged";
824 break; 827 break;
825 case blink::WebAXEventLayoutComplete: 828 case blink::WebAXEventLayoutComplete:
826 event_name = "LayoutComplete"; 829 event_name = "LayoutComplete";
827 break; 830 break;
828 case blink::WebAXEventLiveRegionChanged: 831 case blink::WebAXEventLiveRegionChanged:
829 event_name = "LiveRegionChanged"; 832 event_name = "LiveRegionChanged";
830 break; 833 break;
831 case blink::WebAXEventLoadComplete: 834 case blink::WebAXEventLoadComplete:
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after
1416 // to cancel the input method's ongoing composition session. 1419 // to cancel the input method's ongoing composition session.
1417 if (web_widget_) 1420 if (web_widget_)
1418 web_widget_->confirmComposition(); 1421 web_widget_->confirmComposition();
1419 } 1422 }
1420 1423
1421 blink::WebString WebTestProxyBase::acceptLanguages() { 1424 blink::WebString WebTestProxyBase::acceptLanguages() {
1422 return blink::WebString::fromUTF8(accept_languages_); 1425 return blink::WebString::fromUTF8(accept_languages_);
1423 } 1426 }
1424 1427
1425 } // namespace test_runner 1428 } // namespace test_runner
OLDNEW
« no previous file with comments | « no previous file | content/browser/accessibility/touch_accessibility_aura_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698