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

Side by Side Diff: content/browser/frame_host/render_widget_host_view_child_frame.cc

Issue 2856423002: input: Change how synthesized events are dispatched in telemetry tests. (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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/frame_host/render_widget_host_view_child_frame.h" 5 #include "content/browser/frame_host/render_widget_host_view_child_frame.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 // a fling animation. 667 // a fling animation.
668 // Note: this event handling is modeled on similar code in 668 // Note: this event handling is modeled on similar code in
669 // TenderWidgetHostViewAura::FilterInputEvent(). 669 // TenderWidgetHostViewAura::FilterInputEvent().
670 return INPUT_EVENT_ACK_STATE_NO_CONSUMER_EXISTS; 670 return INPUT_EVENT_ACK_STATE_NO_CONSUMER_EXISTS;
671 } 671 }
672 } 672 }
673 673
674 return INPUT_EVENT_ACK_STATE_NOT_CONSUMED; 674 return INPUT_EVENT_ACK_STATE_NOT_CONSUMED;
675 } 675 }
676 676
677 void RenderWidgetHostViewChildFrame::OnSetNeedsFlushInput() {
678 NOTIMPLEMENTED();
679 }
680
677 BrowserAccessibilityManager* 681 BrowserAccessibilityManager*
678 RenderWidgetHostViewChildFrame::CreateBrowserAccessibilityManager( 682 RenderWidgetHostViewChildFrame::CreateBrowserAccessibilityManager(
679 BrowserAccessibilityDelegate* delegate, bool for_root_frame) { 683 BrowserAccessibilityDelegate* delegate, bool for_root_frame) {
680 return BrowserAccessibilityManager::Create( 684 return BrowserAccessibilityManager::Create(
681 BrowserAccessibilityManager::GetEmptyDocument(), delegate); 685 BrowserAccessibilityManager::GetEmptyDocument(), delegate);
682 } 686 }
683 687
684 void RenderWidgetHostViewChildFrame::ClearCompositorSurfaceIfNecessary() { 688 void RenderWidgetHostViewChildFrame::ClearCompositorSurfaceIfNecessary() {
685 if (!support_) 689 if (!support_)
686 return; 690 return;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 frame_sink_id_); 724 frame_sink_id_);
721 } 725 }
722 support_.reset(); 726 support_.reset();
723 } 727 }
724 728
725 bool RenderWidgetHostViewChildFrame::HasEmbedderChanged() { 729 bool RenderWidgetHostViewChildFrame::HasEmbedderChanged() {
726 return false; 730 return false;
727 } 731 }
728 732
729 } // namespace content 733 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698