| OLD | NEW |
| 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/bind_helpers.h" | 5 #include "base/bind_helpers.h" |
| 6 #include "base/logging.h" | 6 #include "base/logging.h" |
| 7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
| 8 #include "content/browser/browser_plugin/browser_plugin_guest.h" | 8 #include "content/browser/browser_plugin/browser_plugin_guest.h" |
| 9 #include "content/browser/renderer_host/render_view_host_impl.h" | 9 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 10 #include "content/browser/renderer_host/render_widget_host_view_guest.h" | 10 #include "content/browser/renderer_host/render_widget_host_view_guest.h" |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 float minimum_scale, | 365 float minimum_scale, |
| 366 float maximum_scale) { | 366 float maximum_scale) { |
| 367 NOTIMPLEMENTED(); | 367 NOTIMPLEMENTED(); |
| 368 } | 368 } |
| 369 | 369 |
| 370 void RenderWidgetHostViewGuest::UpdateFrameInfo( | 370 void RenderWidgetHostViewGuest::UpdateFrameInfo( |
| 371 const gfx::Vector2d& scroll_offset, | 371 const gfx::Vector2d& scroll_offset, |
| 372 float page_scale_factor, | 372 float page_scale_factor, |
| 373 float min_page_scale_factor, | 373 float min_page_scale_factor, |
| 374 float max_page_scale_factor, | 374 float max_page_scale_factor, |
| 375 const gfx::Size& content_size) { | 375 const gfx::Size& content_size, |
| 376 const gfx::Vector2dF& controls_offset, |
| 377 const gfx::Vector2dF& content_offset) { |
| 376 NOTIMPLEMENTED(); | 378 NOTIMPLEMENTED(); |
| 377 } | 379 } |
| 378 | 380 |
| 379 void RenderWidgetHostViewGuest::HasTouchEventHandlers(bool need_touch_events) { | 381 void RenderWidgetHostViewGuest::HasTouchEventHandlers(bool need_touch_events) { |
| 380 NOTIMPLEMENTED(); | 382 NOTIMPLEMENTED(); |
| 381 } | 383 } |
| 382 #endif // defined(OS_ANDROID) | 384 #endif // defined(OS_ANDROID) |
| 383 | 385 |
| 384 #if defined(TOOLKIT_GTK) | 386 #if defined(TOOLKIT_GTK) |
| 385 GdkEventButton* RenderWidgetHostViewGuest::GetLastMouseDown() { | 387 GdkEventButton* RenderWidgetHostViewGuest::GetLastMouseDown() { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 409 } | 411 } |
| 410 #endif | 412 #endif |
| 411 | 413 |
| 412 #if defined(OS_POSIX) || defined(USE_AURA) | 414 #if defined(OS_POSIX) || defined(USE_AURA) |
| 413 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) { | 415 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) { |
| 414 NOTIMPLEMENTED(); | 416 NOTIMPLEMENTED(); |
| 415 } | 417 } |
| 416 #endif // defined(OS_POSIX) || defined(USE_AURA) | 418 #endif // defined(OS_POSIX) || defined(USE_AURA) |
| 417 | 419 |
| 418 } // namespace content | 420 } // namespace content |
| OLD | NEW |