| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |