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 "content/browser/renderer_host/render_widget_host_view_base.h" | 5 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "content/browser/accessibility/browser_accessibility_manager.h" | 9 #include "content/browser/accessibility/browser_accessibility_manager.h" |
10 #include "content/browser/gpu/gpu_data_manager_impl.h" | 10 #include "content/browser/gpu/gpu_data_manager_impl.h" |
(...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
694 gfx::ToRoundedPoint(point))); | 694 gfx::ToRoundedPoint(point))); |
695 } | 695 } |
696 | 696 |
697 void RenderWidgetHostViewBase::TransformPointToLocalCoordSpace( | 697 void RenderWidgetHostViewBase::TransformPointToLocalCoordSpace( |
698 const gfx::Point& point, | 698 const gfx::Point& point, |
699 cc::SurfaceId original_surface, | 699 cc::SurfaceId original_surface, |
700 gfx::Point* transformed_point) { | 700 gfx::Point* transformed_point) { |
701 *transformed_point = point; | 701 *transformed_point = point; |
702 } | 702 } |
703 | 703 |
| 704 cc::SurfaceId RenderWidgetHostViewBase::SurfaceIdForTesting() const { |
| 705 return cc::SurfaceId(); |
| 706 } |
| 707 |
704 } // namespace content | 708 } // namespace content |
OLD | NEW |