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

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

Issue 2900163003: Remove NotImplemented from IsInVR (Closed)
Patch Set: Created 3 years, 7 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 | « no previous file | 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 "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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 ui::TextInputClient* RenderWidgetHostViewBase::GetTextInputClient() { 131 ui::TextInputClient* RenderWidgetHostViewBase::GetTextInputClient() {
132 NOTREACHED(); 132 NOTREACHED();
133 return NULL; 133 return NULL;
134 } 134 }
135 135
136 void RenderWidgetHostViewBase::SetIsInVR(bool is_in_vr) { 136 void RenderWidgetHostViewBase::SetIsInVR(bool is_in_vr) {
137 NOTIMPLEMENTED(); 137 NOTIMPLEMENTED();
138 } 138 }
139 139
140 bool RenderWidgetHostViewBase::IsInVR() const { 140 bool RenderWidgetHostViewBase::IsInVR() const {
141 NOTIMPLEMENTED();
142 return false; 141 return false;
143 } 142 }
144 143
145 bool RenderWidgetHostViewBase::IsSurfaceAvailableForCopy() const { 144 bool RenderWidgetHostViewBase::IsSurfaceAvailableForCopy() const {
146 return false; 145 return false;
147 } 146 }
148 147
149 void RenderWidgetHostViewBase::CopyFromSurface( 148 void RenderWidgetHostViewBase::CopyFromSurface(
150 const gfx::Rect& src_rect, 149 const gfx::Rect& src_rect,
151 const gfx::Size& output_size, 150 const gfx::Size& output_size,
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 499
501 bool RenderWidgetHostViewBase::IsChildFrameForTesting() const { 500 bool RenderWidgetHostViewBase::IsChildFrameForTesting() const {
502 return false; 501 return false;
503 } 502 }
504 503
505 cc::SurfaceId RenderWidgetHostViewBase::SurfaceIdForTesting() const { 504 cc::SurfaceId RenderWidgetHostViewBase::SurfaceIdForTesting() const {
506 return cc::SurfaceId(); 505 return cc::SurfaceId();
507 } 506 }
508 507
509 } // namespace content 508 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698