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

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

Issue 23651003: Use Blink accessibility enums in Chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 3 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_WIN_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_
7 7
8 #include <atlbase.h> 8 #include <atlbase.h>
9 #include <atlapp.h> 9 #include <atlapp.h>
10 #include <atlcrack.h> 10 #include <atlcrack.h>
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; 226 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE;
227 virtual void AcceleratedSurfaceBuffersSwapped( 227 virtual void AcceleratedSurfaceBuffersSwapped(
228 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params, 228 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params,
229 int gpu_host_id) OVERRIDE; 229 int gpu_host_id) OVERRIDE;
230 virtual void AcceleratedSurfacePostSubBuffer( 230 virtual void AcceleratedSurfacePostSubBuffer(
231 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params, 231 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params,
232 int gpu_host_id) OVERRIDE; 232 int gpu_host_id) OVERRIDE;
233 virtual void AcceleratedSurfaceSuspend() OVERRIDE; 233 virtual void AcceleratedSurfaceSuspend() OVERRIDE;
234 virtual void AcceleratedSurfaceRelease() OVERRIDE; 234 virtual void AcceleratedSurfaceRelease() OVERRIDE;
235 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE; 235 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE;
236 virtual void OnAccessibilityNotifications( 236 virtual void OnAccessibilityEvents(
237 const std::vector<AccessibilityHostMsg_NotificationParams>& params 237 const std::vector<AccessibilityHostMsg_EventParams>& params
238 ) OVERRIDE; 238 ) OVERRIDE;
239 virtual bool LockMouse() OVERRIDE; 239 virtual bool LockMouse() OVERRIDE;
240 virtual void UnlockMouse() OVERRIDE; 240 virtual void UnlockMouse() OVERRIDE;
241 virtual void SetClickthroughRegion(SkRegion* region) OVERRIDE; 241 virtual void SetClickthroughRegion(SkRegion* region) OVERRIDE;
242 242
243 // Implementation of NotificationObserver: 243 // Implementation of NotificationObserver:
244 virtual void Observe(int type, 244 virtual void Observe(int type,
245 const NotificationSource& source, 245 const NotificationSource& source,
246 const NotificationDetails& details) OVERRIDE; 246 const NotificationDetails& details) OVERRIDE;
247 247
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 base::win::ScopedComPtr<IAccessible> window_iaccessible_; 605 base::win::ScopedComPtr<IAccessible> window_iaccessible_;
606 606
607 ui::LatencyInfo software_latency_info_; 607 ui::LatencyInfo software_latency_info_;
608 608
609 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); 609 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin);
610 }; 610 };
611 611
612 } // namespace content 612 } // namespace content
613 613
614 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ 614 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698