| 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 <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
| 8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "chrome/browser/accessibility/accessibility_extension_api.h" | 10 #include "chrome/browser/accessibility/accessibility_extension_api.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 virtual bool UseTransparentWindows() const OVERRIDE { | 75 virtual bool UseTransparentWindows() const OVERRIDE { |
| 76 return false; | 76 return false; |
| 77 } | 77 } |
| 78 virtual void AddRef() OVERRIDE {} | 78 virtual void AddRef() OVERRIDE {} |
| 79 virtual void ReleaseRef() OVERRIDE {} | 79 virtual void ReleaseRef() OVERRIDE {} |
| 80 | 80 |
| 81 virtual int GetDispositionForEvent(int event_flags) OVERRIDE { | 81 virtual int GetDispositionForEvent(int event_flags) OVERRIDE { |
| 82 return 0; | 82 return 0; |
| 83 } | 83 } |
| 84 | 84 |
| 85 #if defined(USE_AURA) |
| 86 virtual views::NativeWidgetHelperAura* CreateNativeWidgetHelper( |
| 87 views::NativeWidgetAura* native_widget) OVERRIDE { |
| 88 return NULL; |
| 89 } |
| 90 #endif |
| 91 |
| 85 DISALLOW_COPY_AND_ASSIGN(AccessibilityViewsDelegate); | 92 DISALLOW_COPY_AND_ASSIGN(AccessibilityViewsDelegate); |
| 86 }; | 93 }; |
| 87 | 94 |
| 88 class AccessibilityWindowDelegate : public views::WidgetDelegate { | 95 class AccessibilityWindowDelegate : public views::WidgetDelegate { |
| 89 public: | 96 public: |
| 90 explicit AccessibilityWindowDelegate(views::View* contents) | 97 explicit AccessibilityWindowDelegate(views::View* contents) |
| 91 : contents_(contents) { } | 98 : contents_(contents) { } |
| 92 | 99 |
| 93 // Overridden from views::WidgetDelegate: | 100 // Overridden from views::WidgetDelegate: |
| 94 virtual void DeleteDelegate() OVERRIDE { delete this; } | 101 virtual void DeleteDelegate() OVERRIDE { delete this; } |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 | 333 |
| 327 // Test that we got the event with the expected name and context. | 334 // Test that we got the event with the expected name and context. |
| 328 EXPECT_EQ(1, focus_event_count_); | 335 EXPECT_EQ(1, focus_event_count_); |
| 329 EXPECT_EQ(kButtonNameASCII, last_control_name_); | 336 EXPECT_EQ(kButtonNameASCII, last_control_name_); |
| 330 EXPECT_EQ(kAlertTextASCII, last_control_context_); | 337 EXPECT_EQ(kAlertTextASCII, last_control_context_); |
| 331 | 338 |
| 332 window->CloseNow(); | 339 window->CloseNow(); |
| 333 } | 340 } |
| 334 | 341 |
| 335 #endif // defined(TOOLKIT_VIEWS) | 342 #endif // defined(TOOLKIT_VIEWS) |
| OLD | NEW |