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

Side by Side Diff: content/browser/accessibility/browser_accessibility.cc

Issue 2795843002: Move implementation of accessibility actions to views::View (Closed)
Patch Set: Fix win compile Created 3 years, 8 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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/browser/accessibility/browser_accessibility.h" 5 #include "content/browser/accessibility/browser_accessibility.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
(...skipping 1263 matching lines...) Expand 10 before | Expand all | Expand 10 after
1274 NOTREACHED(); 1274 NOTREACHED();
1275 return gfx::kNullAcceleratedWidget; 1275 return gfx::kNullAcceleratedWidget;
1276 } 1276 }
1277 1277
1278 bool BrowserAccessibility::AccessibilityPerformAction( 1278 bool BrowserAccessibility::AccessibilityPerformAction(
1279 const ui::AXActionData& data) { 1279 const ui::AXActionData& data) {
1280 NOTREACHED(); 1280 NOTREACHED();
1281 return false; 1281 return false;
1282 } 1282 }
1283 1283
1284 void BrowserAccessibility::DoDefaultAction() {
1285 NOTREACHED();
1286 }
1287
1288 } // namespace content 1284 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/accessibility/browser_accessibility.h ('k') | ui/accessibility/platform/ax_platform_node_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698