Chromium Code Reviews| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 243 // Base implementation is unimplemented. | 243 // Base implementation is unimplemented. |
| 244 void RenderWidgetHostViewBase::BeginFrameSubscription( | 244 void RenderWidgetHostViewBase::BeginFrameSubscription( |
| 245 std::unique_ptr<RenderWidgetHostViewFrameSubscriber> subscriber) { | 245 std::unique_ptr<RenderWidgetHostViewFrameSubscriber> subscriber) { |
| 246 NOTREACHED(); | 246 NOTREACHED(); |
| 247 } | 247 } |
| 248 | 248 |
| 249 void RenderWidgetHostViewBase::EndFrameSubscription() { | 249 void RenderWidgetHostViewBase::EndFrameSubscription() { |
| 250 NOTREACHED(); | 250 NOTREACHED(); |
| 251 } | 251 } |
| 252 | 252 |
| 253 void RenderWidgetHostViewBase::FocusedNodeTouched( | |
| 254 const gfx::Point& location_dips, bool editable) { | |
| 255 DVLOG(1) << "FocusedNodeTouched: " << editable; | |
|
ncarter (slow)
2016/05/19 18:03:24
I wonder if this will be reachable with oopifs?
Y
ananta
2016/05/19 19:33:38
Will look into this
ananta
2016/05/19 22:00:56
I logged a bug https://bugs.chromium.org/p/chromiu
| |
| 256 } | |
| 257 | |
| 253 uint32_t RenderWidgetHostViewBase::RendererFrameNumber() { | 258 uint32_t RenderWidgetHostViewBase::RendererFrameNumber() { |
| 254 return renderer_frame_number_; | 259 return renderer_frame_number_; |
| 255 } | 260 } |
| 256 | 261 |
| 257 void RenderWidgetHostViewBase::DidReceiveRendererFrame() { | 262 void RenderWidgetHostViewBase::DidReceiveRendererFrame() { |
| 258 ++renderer_frame_number_; | 263 ++renderer_frame_number_; |
| 259 } | 264 } |
| 260 | 265 |
| 261 void RenderWidgetHostViewBase::FlushInput() { | 266 void RenderWidgetHostViewBase::FlushInput() { |
| 262 RenderWidgetHostImpl* impl = NULL; | 267 RenderWidgetHostImpl* impl = NULL; |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 394 | 399 |
| 395 bool RenderWidgetHostViewBase::IsChildFrameForTesting() const { | 400 bool RenderWidgetHostViewBase::IsChildFrameForTesting() const { |
| 396 return false; | 401 return false; |
| 397 } | 402 } |
| 398 | 403 |
| 399 cc::SurfaceId RenderWidgetHostViewBase::SurfaceIdForTesting() const { | 404 cc::SurfaceId RenderWidgetHostViewBase::SurfaceIdForTesting() const { |
| 400 return cc::SurfaceId(); | 405 return cc::SurfaceId(); |
| 401 } | 406 } |
| 402 | 407 |
| 403 } // namespace content | 408 } // namespace content |
| OLD | NEW |