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

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

Issue 1734403003: Add helper class for tests using browser process hit testing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix gcc compile warnings Created 4 years, 9 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
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_aura.h" 5 #include "content/browser/renderer_host/render_widget_host_view_aura.h"
6 6
7 #include <set> 7 #include <set>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/auto_reset.h" 10 #include "base/auto_reset.h"
(...skipping 3065 matching lines...) Expand 10 before | Expand all | Expand 10 after
3076 } 3076 }
3077 3077
3078 void RenderWidgetHostViewAura::UnlockCompositingSurface() { 3078 void RenderWidgetHostViewAura::UnlockCompositingSurface() {
3079 NOTIMPLEMENTED(); 3079 NOTIMPLEMENTED();
3080 } 3080 }
3081 3081
3082 uint32_t RenderWidgetHostViewAura::GetSurfaceIdNamespace() { 3082 uint32_t RenderWidgetHostViewAura::GetSurfaceIdNamespace() {
3083 return delegated_frame_host_->GetSurfaceIdNamespace(); 3083 return delegated_frame_host_->GetSurfaceIdNamespace();
3084 } 3084 }
3085 3085
3086 cc::SurfaceId RenderWidgetHostViewAura::SurfaceIdForTesting() const {
3087 return delegated_frame_host_->SurfaceIdForTesting();
3088 }
3089
3086 //////////////////////////////////////////////////////////////////////////////// 3090 ////////////////////////////////////////////////////////////////////////////////
3087 // RenderWidgetHostViewBase, public: 3091 // RenderWidgetHostViewBase, public:
3088 3092
3089 // static 3093 // static
3090 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { 3094 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) {
3091 GetScreenInfoForWindow(results, NULL); 3095 GetScreenInfoForWindow(results, NULL);
3092 } 3096 }
3093 3097
3094 } // namespace content 3098 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698