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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura.h

Issue 1536493002: Working proof of concept of select to speak (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Drag across multiple objects Created 5 years 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 void OnWindowTargetVisibilityChanged(bool visible) override; 258 void OnWindowTargetVisibilityChanged(bool visible) override;
259 bool HasHitTestMask() const override; 259 bool HasHitTestMask() const override;
260 void GetHitTestMask(gfx::Path* mask) const override; 260 void GetHitTestMask(gfx::Path* mask) const override;
261 261
262 // Overridden from ui::EventHandler: 262 // Overridden from ui::EventHandler:
263 void OnKeyEvent(ui::KeyEvent* event) override; 263 void OnKeyEvent(ui::KeyEvent* event) override;
264 void OnMouseEvent(ui::MouseEvent* event) override; 264 void OnMouseEvent(ui::MouseEvent* event) override;
265 void OnScrollEvent(ui::ScrollEvent* event) override; 265 void OnScrollEvent(ui::ScrollEvent* event) override;
266 void OnTouchEvent(ui::TouchEvent* event) override; 266 void OnTouchEvent(ui::TouchEvent* event) override;
267 void OnGestureEvent(ui::GestureEvent* event) override; 267 void OnGestureEvent(ui::GestureEvent* event) override;
268 void OnAccessibilityMouseEvent(ui::MouseEvent* event) override;
268 269
269 // Overridden from aura::client::ActivationDelegate: 270 // Overridden from aura::client::ActivationDelegate:
270 bool ShouldActivate() const override; 271 bool ShouldActivate() const override;
271 272
272 // Overridden from aura::client::CursorClientObserver: 273 // Overridden from aura::client::CursorClientObserver:
273 void OnCursorVisibilityChanged(bool is_visible) override; 274 void OnCursorVisibilityChanged(bool is_visible) override;
274 275
275 // Overridden from aura::client::FocusChangeObserver: 276 // Overridden from aura::client::FocusChangeObserver:
276 void OnWindowFocused(aura::Window* gained_focus, 277 void OnWindowFocused(aura::Window* gained_focus,
277 aura::Window* lost_focus) override; 278 aura::Window* lost_focus) override;
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 float device_scale_factor_; 682 float device_scale_factor_;
682 683
683 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; 684 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_;
684 685
685 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 686 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
686 }; 687 };
687 688
688 } // namespace content 689 } // namespace content
689 690
690 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 691 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698