Skip to content

Commit

Permalink
Call matching method on delegate
Browse files Browse the repository at this point in the history
Fix possible type and call delegate method with matching name.

BUG=662501

Review-Url: https://codereview.chromium.org/2955783003
Cr-Commit-Position: refs/heads/master@{#482461}
  • Loading branch information
felixe authored and Commit Bot committed Jun 26, 2017
1 parent 9d17869 commit 80e7ad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ash/ash_touch_exploration_manager_chromeos.cc
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ void AshTouchExplorationManager::OnTwoFingerTouchStart() {

void AshTouchExplorationManager::OnTwoFingerTouchStop() {
AccessibilityDelegate* delegate = Shell::Get()->accessibility_delegate();
delegate->OnTwoFingerTouchStart();
delegate->OnTwoFingerTouchStop();
}

void AshTouchExplorationManager::PlaySpokenFeedbackToggleCountdown(
Expand Down

0 comments on commit 80e7ad9

Please sign in to comment.