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

Side by Side Diff: content/browser/renderer_host/render_widget_host_delegate.cc

Issue 1255483004: Implement surface-based browser process hit testing for Mac and Aura (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disabled test on Android (not implemented there) Created 5 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 #include "base/basictypes.h" 5 #include "base/basictypes.h"
6 #include "content/browser/renderer_host/render_widget_host_delegate.h" 6 #include "content/browser/renderer_host/render_widget_host_delegate.h"
7 7
8 namespace content { 8 namespace content {
9 9
10 bool RenderWidgetHostDelegate::PreHandleKeyboardEvent( 10 bool RenderWidgetHostDelegate::PreHandleKeyboardEvent(
(...skipping 22 matching lines...) Expand all
33 return NULL; 33 return NULL;
34 } 34 }
35 35
36 #if defined(OS_WIN) 36 #if defined(OS_WIN)
37 gfx::NativeViewAccessible 37 gfx::NativeViewAccessible
38 RenderWidgetHostDelegate::GetParentNativeViewAccessible() { 38 RenderWidgetHostDelegate::GetParentNativeViewAccessible() {
39 return NULL; 39 return NULL;
40 } 40 }
41 #endif 41 #endif
42 42
43 // If a delegate does not override this, the RenderWidgetHostView will
44 // assume it is the sole platform event consumer.
45 RenderWidgetHostInputEventRouter*
46 RenderWidgetHostDelegate::GetInputEventRouter() {
47 return nullptr;
48 }
49
43 } // namespace content 50 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698