OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "content/browser/frame_host/render_widget_host_view_child_frame.h" | 5 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" |
6 | 6 |
7 #include "content/browser/frame_host/cross_process_frame_connector.h" | 7 #include "content/browser/frame_host/cross_process_frame_connector.h" |
8 #include "content/browser/renderer_host/render_widget_host_impl.h" | 8 #include "content/browser/renderer_host/render_widget_host_impl.h" |
9 #include "content/common/gpu/gpu_messages.h" | 9 #include "content/common/gpu/gpu_messages.h" |
10 #include "content/common/view_messages.h" | 10 #include "content/common/view_messages.h" |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 const NativeWebKeyboardEvent& event) { | 282 const NativeWebKeyboardEvent& event) { |
283 return false; | 283 return false; |
284 } | 284 } |
285 #endif // defined(OS_MACOSX) | 285 #endif // defined(OS_MACOSX) |
286 | 286 |
287 #if defined(OS_ANDROID) | 287 #if defined(OS_ANDROID) |
288 void RenderWidgetHostViewChildFrame::ShowDisambiguationPopup( | 288 void RenderWidgetHostViewChildFrame::ShowDisambiguationPopup( |
289 const gfx::Rect& target_rect, | 289 const gfx::Rect& target_rect, |
290 const SkBitmap& zoomed_bitmap) { | 290 const SkBitmap& zoomed_bitmap) { |
291 } | 291 } |
292 | |
293 void RenderWidgetHostViewChildFrame::HasTouchEventHandlers( | |
294 bool need_touch_events) { | |
295 } | |
296 #endif // defined(OS_ANDROID) | 292 #endif // defined(OS_ANDROID) |
297 | 293 |
298 #if defined(TOOLKIT_GTK) | 294 #if defined(TOOLKIT_GTK) |
299 GdkEventButton* RenderWidgetHostViewChildFrame::GetLastMouseDown() { | 295 GdkEventButton* RenderWidgetHostViewChildFrame::GetLastMouseDown() { |
300 return NULL; | 296 return NULL; |
301 } | 297 } |
302 | 298 |
303 gfx::NativeView RenderWidgetHostViewChildFrame::BuildInputMethodsGtkMenu() { | 299 gfx::NativeView RenderWidgetHostViewChildFrame::BuildInputMethodsGtkMenu() { |
304 return NULL; | 300 return NULL; |
305 } | 301 } |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 gfx::NativeViewAccessible accessible_parent) { | 356 gfx::NativeViewAccessible accessible_parent) { |
361 } | 357 } |
362 | 358 |
363 gfx::NativeViewId RenderWidgetHostViewChildFrame::GetParentForWindowlessPlugin() | 359 gfx::NativeViewId RenderWidgetHostViewChildFrame::GetParentForWindowlessPlugin() |
364 const { | 360 const { |
365 return NULL; | 361 return NULL; |
366 } | 362 } |
367 #endif // defined(OS_WIN) && defined(USE_AURA) | 363 #endif // defined(OS_WIN) && defined(USE_AURA) |
368 | 364 |
369 } // namespace content | 365 } // namespace content |
OLD | NEW |