Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(493)

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_base.cc

Issue 1265013003: Adds support for hittesting points on surface quads (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressing comments Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_base.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 683 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 : blink::WebScreenOrientationLandscapeSecondary; 694 : blink::WebScreenOrientationLandscapeSecondary;
695 } 695 }
696 696
697 void RenderWidgetHostViewBase::OnDidNavigateMainFrameToNewPage() { 697 void RenderWidgetHostViewBase::OnDidNavigateMainFrameToNewPage() {
698 } 698 }
699 699
700 uint32_t RenderWidgetHostViewBase::GetSurfaceIdNamespace() { 700 uint32_t RenderWidgetHostViewBase::GetSurfaceIdNamespace() {
701 return 0; 701 return 0;
702 } 702 }
703 703
704 uint32_t RenderWidgetHostViewBase::SurfaceIdNamespaceAtPoint(
705 const gfx::Point& point,
706 gfx::Point* transformed_point) {
707 NOTREACHED();
708 return 0;
709 }
710
704 } // namespace content 711 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_base.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698