summaryrefslogtreecommitdiffstats
path: root/views/view_gtk.cc
diff options
context:
space:
mode:
authorrohitrao@chromium.org <rohitrao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-29 03:24:45 +0000
committerrohitrao@chromium.org <rohitrao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-29 03:24:45 +0000
commitd53049c6c12fa149fe048f23da143029f2f18ac5 (patch)
treec1a0138714b8ae0899a4a411cb40c7160629da24 /views/view_gtk.cc
parent3f6eaabdb0c4460e62297465ccc9ba33aa3e6fc3 (diff)
downloadchromium_src-d53049c6c12fa149fe048f23da143029f2f18ac5.zip
chromium_src-d53049c6c12fa149fe048f23da143029f2f18ac5.tar.gz
chromium_src-d53049c6c12fa149fe048f23da143029f2f18ac5.tar.bz2
Revert 54074 - Add initial tests for keyboard access (tabbing in some dialogs).
BUG=none TEST=none Review URL: http://codereview.chromium.org/3015026 TBR=dtseng@chromium.org Review URL: http://codereview.chromium.org/3046031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54093 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/view_gtk.cc')
-rw-r--r--views/view_gtk.cc13
1 files changed, 1 insertions, 12 deletions
diff --git a/views/view_gtk.cc b/views/view_gtk.cc
index d74598d..049dfe8 100644
--- a/views/view_gtk.cc
+++ b/views/view_gtk.cc
@@ -7,7 +7,6 @@
#include <gtk/gtk.h>
#include "base/logging.h"
-#include "views/views_delegate.h"
namespace views {
@@ -22,17 +21,7 @@ int View::GetMenuShowDelay() {
}
void View::NotifyAccessibilityEvent(AccessibilityTypes::Event event_type) {
- NotifyAccessibilityEvent(event_type, true);
-}
-
-void View::NotifyAccessibilityEvent(AccessibilityTypes::Event event_type,
- bool send_native_event) {
- // Send the notification to the delegate.
- if (ViewsDelegate::views_delegate)
- ViewsDelegate::views_delegate->NotifyAccessibilityEvent(this, event_type);
-
- // In the future if we add native GTK accessibility support, the
- // notification should be sent here.
+ // Not implemented on GTK.
}
ViewAccessibilityWrapper* View::GetViewAccessibilityWrapper() {