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

Unified Diff: ui/views/widget/native_widget_aura.cc

Issue 9773024: This patch implements Chromium's Aura gesture recognizer in terms of utouch-grail and utouch-frame … (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
« ui/ui.gyp ('K') | « ui/ui.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/widget/native_widget_aura.cc
===================================================================
--- ui/views/widget/native_widget_aura.cc (revision 126124)
+++ ui/views/widget/native_widget_aura.cc (working copy)
@@ -284,7 +284,7 @@
bool NativeWidgetAura::IsScreenReaderActive() const {
// http://crbug.com/102570
- //NOTIMPLEMENTED();
+ // NOTIMPLEMENTED();
rjkroege 2012/04/02 17:05:15 leave it as it was?
return false;
}
@@ -292,7 +292,7 @@
View* view,
ui::AccessibilityTypes::Event event_type) {
// http://crbug.com/102570
- //NOTIMPLEMENTED();
+ // NOTIMPLEMENTED();
}
void NativeWidgetAura::SetMouseCapture() {
@@ -368,17 +368,17 @@
void NativeWidgetAura::SetAccessibleName(const string16& name) {
// http://crbug.com/102570
- //NOTIMPLEMENTED();
+ // NOTIMPLEMENTED();
}
void NativeWidgetAura::SetAccessibleRole(ui::AccessibilityTypes::Role role) {
// http://crbug.com/102570
- //NOTIMPLEMENTED();
+ // NOTIMPLEMENTED();
}
void NativeWidgetAura::SetAccessibleState(ui::AccessibilityTypes::State state) {
// http://crbug.com/102570
- //NOTIMPLEMENTED();
+ // NOTIMPLEMENTED();
}
void NativeWidgetAura::InitModalType(ui::ModalType modal_type) {
@@ -566,7 +566,7 @@
bool NativeWidgetAura::IsAccessibleWidget() const {
// http://crbug.com/102570
- //NOTIMPLEMENTED();
+ // NOTIMPLEMENTED();
return false;
}
@@ -710,6 +710,7 @@
bool NativeWidgetAura::OnMouseEvent(aura::MouseEvent* event) {
DCHECK(window_->IsVisible());
+
if (event->type() == ui::ET_MOUSEWHEEL) {
MouseWheelEvent wheel_event(event);
return delegate_->OnMouseEvent(wheel_event);
« ui/ui.gyp ('K') | « ui/ui.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698