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 "base/profiler/scoped_tracker.h" | 8 #include "base/profiler/scoped_tracker.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 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
692 } | 692 } |
693 | 693 |
694 return primary_landscape_angle == angle | 694 return primary_landscape_angle == angle |
695 ? blink::WebScreenOrientationLandscapePrimary | 695 ? blink::WebScreenOrientationLandscapePrimary |
696 : blink::WebScreenOrientationLandscapeSecondary; | 696 : blink::WebScreenOrientationLandscapeSecondary; |
697 } | 697 } |
698 | 698 |
699 void RenderWidgetHostViewBase::OnDidNavigateMainFrameToNewPage() { | 699 void RenderWidgetHostViewBase::OnDidNavigateMainFrameToNewPage() { |
700 } | 700 } |
701 | 701 |
| 702 uint32_t RenderWidgetHostViewBase::GetSurfaceIdNamespace() { |
| 703 return 0; |
| 704 } |
| 705 |
702 } // namespace content | 706 } // namespace content |
OLD | NEW |