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

Side by Side Diff: content/public/browser/render_widget_host_view.h

Issue 23506027: Implement web content hit testing in win aura. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix compile error 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
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_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_H_
6 #define CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_H_ 6 #define CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/strings/string16.h" 9 #include "base/strings/string16.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 // Gets the event for the last mouse down. 156 // Gets the event for the last mouse down.
157 virtual GdkEventButton* GetLastMouseDown() = 0; 157 virtual GdkEventButton* GetLastMouseDown() = 0;
158 // Builds a submenu containing all the gtk input method commands. 158 // Builds a submenu containing all the gtk input method commands.
159 virtual gfx::NativeView BuildInputMethodsGtkMenu() = 0; 159 virtual gfx::NativeView BuildInputMethodsGtkMenu() = 0;
160 #endif // defined(TOOLKIT_GTK) 160 #endif // defined(TOOLKIT_GTK)
161 161
162 #if defined(OS_WIN) && !defined(USE_AURA) 162 #if defined(OS_WIN) && !defined(USE_AURA)
163 // The region specified will be transparent to mouse clicks. 163 // The region specified will be transparent to mouse clicks.
164 virtual void SetClickthroughRegion(SkRegion* region) = 0; 164 virtual void SetClickthroughRegion(SkRegion* region) = 0;
165 #endif 165 #endif
166
167 #if defined(OS_WIN) && defined(USE_AURA)
168 virtual gfx::NativeViewAccessible AccessibleObjectFromChildId(long child_id)
169 = 0;
170 #endif
171 }; 166 };
172 167
173 } // namespace content 168 } // namespace content
174 169
175 #endif // CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_H_ 170 #endif // CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/test_render_view_host.cc ('k') | ui/views/accessibility/native_view_accessibility.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698