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

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

Issue 10831240: Remove TouchEvent interface, and rename TouchEventImpl to TouchEvent (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge-tot Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
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 <vector> 9 #include <vector>
10 10
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 const gfx::Rect& new_bounds) OVERRIDE; 159 const gfx::Rect& new_bounds) OVERRIDE;
160 virtual void OnFocus(aura::Window* old_focused_window) OVERRIDE; 160 virtual void OnFocus(aura::Window* old_focused_window) OVERRIDE;
161 virtual void OnBlur() OVERRIDE; 161 virtual void OnBlur() OVERRIDE;
162 virtual bool OnKeyEvent(ui::KeyEvent* event) OVERRIDE; 162 virtual bool OnKeyEvent(ui::KeyEvent* event) OVERRIDE;
163 virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE; 163 virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE;
164 virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE; 164 virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE;
165 virtual bool ShouldDescendIntoChildForEventHandling( 165 virtual bool ShouldDescendIntoChildForEventHandling(
166 aura::Window* child, 166 aura::Window* child,
167 const gfx::Point& location) OVERRIDE; 167 const gfx::Point& location) OVERRIDE;
168 virtual bool OnMouseEvent(ui::MouseEvent* event) OVERRIDE; 168 virtual bool OnMouseEvent(ui::MouseEvent* event) OVERRIDE;
169 virtual ui::TouchStatus OnTouchEvent(ui::TouchEventImpl* event) OVERRIDE; 169 virtual ui::TouchStatus OnTouchEvent(ui::TouchEvent* event) OVERRIDE;
170 virtual ui::GestureStatus OnGestureEvent( 170 virtual ui::GestureStatus OnGestureEvent(
171 ui::GestureEventImpl* event) OVERRIDE; 171 ui::GestureEventImpl* event) OVERRIDE;
172 virtual bool CanFocus() OVERRIDE; 172 virtual bool CanFocus() OVERRIDE;
173 virtual void OnCaptureLost() OVERRIDE; 173 virtual void OnCaptureLost() OVERRIDE;
174 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; 174 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
175 virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE; 175 virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE;
176 virtual void OnWindowDestroying() OVERRIDE; 176 virtual void OnWindowDestroying() OVERRIDE;
177 virtual void OnWindowDestroyed() OVERRIDE; 177 virtual void OnWindowDestroyed() OVERRIDE;
178 virtual void OnWindowTargetVisibilityChanged(bool visible) OVERRIDE; 178 virtual void OnWindowTargetVisibilityChanged(bool visible) OVERRIDE;
179 virtual bool HasHitTestMask() const OVERRIDE; 179 virtual bool HasHitTestMask() const OVERRIDE;
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 374
375 // This lock is for waiting for a front surface to become available to draw. 375 // This lock is for waiting for a front surface to become available to draw.
376 scoped_refptr<aura::CompositorLock> released_front_lock_; 376 scoped_refptr<aura::CompositorLock> released_front_lock_;
377 377
378 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 378 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
379 }; 379 };
380 380
381 } // namespace content 381 } // namespace content
382 382
383 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 383 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW
« no previous file with comments | « ash/wm/workspace/frame_maximize_button.cc ('k') | content/browser/renderer_host/render_widget_host_view_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698