| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 const SkBitmap& zoomed_bitmap) { | 320 const SkBitmap& zoomed_bitmap) { |
| 321 } | 321 } |
| 322 | 322 |
| 323 void RenderWidgetHostViewGuest::SetCachedPageScaleFactorLimits( | 323 void RenderWidgetHostViewGuest::SetCachedPageScaleFactorLimits( |
| 324 float minimum_scale, | 324 float minimum_scale, |
| 325 float maximum_scale) { | 325 float maximum_scale) { |
| 326 } | 326 } |
| 327 | 327 |
| 328 void RenderWidgetHostViewGuest::UpdateFrameInfo( | 328 void RenderWidgetHostViewGuest::UpdateFrameInfo( |
| 329 const gfx::Vector2d& scroll_offset, | 329 const gfx::Vector2d& scroll_offset, |
| 330 const gfx::Vector2d& unused_scroll_delta, |
| 330 float page_scale_factor, | 331 float page_scale_factor, |
| 331 float min_page_scale_factor, | 332 float min_page_scale_factor, |
| 332 float max_page_scale_factor, | 333 float max_page_scale_factor, |
| 333 const gfx::Size& content_size, | 334 const gfx::Size& content_size, |
| 334 const gfx::Vector2dF& controls_offset, | 335 const gfx::Vector2dF& controls_offset, |
| 335 const gfx::Vector2dF& content_offset) { | 336 const gfx::Vector2dF& content_offset) { |
| 336 } | 337 } |
| 337 | 338 |
| 338 void RenderWidgetHostViewGuest::HasTouchEventHandlers(bool need_touch_events) { | 339 void RenderWidgetHostViewGuest::HasTouchEventHandlers(bool need_touch_events) { |
| 339 } | 340 } |
| (...skipping 21 matching lines...) Expand all Loading... |
| 361 void RenderWidgetHostViewGuest::WillWmDestroy() { | 362 void RenderWidgetHostViewGuest::WillWmDestroy() { |
| 362 } | 363 } |
| 363 #endif | 364 #endif |
| 364 | 365 |
| 365 #if defined(OS_POSIX) || defined(USE_AURA) | 366 #if defined(OS_POSIX) || defined(USE_AURA) |
| 366 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) { | 367 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) { |
| 367 } | 368 } |
| 368 #endif // defined(OS_POSIX) || defined(USE_AURA) | 369 #endif // defined(OS_POSIX) || defined(USE_AURA) |
| 369 | 370 |
| 370 } // namespace content | 371 } // namespace content |
| OLD | NEW |