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

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

Issue 2771233002: Remove the wrapper functions content::RecordAction et al (Closed)
Patch Set: Rebased Created 3 years, 8 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 #include "content/browser/renderer_host/ui_events_helper.h" 47 #include "content/browser/renderer_host/ui_events_helper.h"
48 #include "content/common/content_switches_internal.h" 48 #include "content/common/content_switches_internal.h"
49 #include "content/common/input_messages.h" 49 #include "content/common/input_messages.h"
50 #include "content/common/render_widget_window_tree_client_factory.mojom.h" 50 #include "content/common/render_widget_window_tree_client_factory.mojom.h"
51 #include "content/common/site_isolation_policy.h" 51 #include "content/common/site_isolation_policy.h"
52 #include "content/common/text_input_state.h" 52 #include "content/common/text_input_state.h"
53 #include "content/common/view_messages.h" 53 #include "content/common/view_messages.h"
54 #include "content/public/browser/content_browser_client.h" 54 #include "content/public/browser/content_browser_client.h"
55 #include "content/public/browser/overscroll_configuration.h" 55 #include "content/public/browser/overscroll_configuration.h"
56 #include "content/public/browser/render_view_host.h" 56 #include "content/public/browser/render_view_host.h"
57 #include "content/public/browser/user_metrics.h"
58 #include "content/public/common/content_switches.h" 57 #include "content/public/common/content_switches.h"
59 #include "gpu/ipc/common/gpu_messages.h" 58 #include "gpu/ipc/common/gpu_messages.h"
60 #include "media/base/video_frame.h" 59 #include "media/base/video_frame.h"
61 #include "services/service_manager/public/cpp/interface_provider.h" 60 #include "services/service_manager/public/cpp/interface_provider.h"
62 #include "services/ui/public/interfaces/window_manager_constants.mojom.h" 61 #include "services/ui/public/interfaces/window_manager_constants.mojom.h"
63 #include "third_party/WebKit/public/platform/WebInputEvent.h" 62 #include "third_party/WebKit/public/platform/WebInputEvent.h"
64 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" 63 #include "third_party/WebKit/public/web/WebCompositionUnderline.h"
65 #include "ui/accessibility/platform/aura_window_properties.h" 64 #include "ui/accessibility/platform/aura_window_properties.h"
66 #include "ui/aura/client/aura_constants.h" 65 #include "ui/aura/client/aura_constants.h"
67 #include "ui/aura/client/cursor_client.h" 66 #include "ui/aura/client/cursor_client.h"
(...skipping 2299 matching lines...) Expand 10 before | Expand all | Expand 10 after
2367 2366
2368 void RenderWidgetHostViewAura::SetPopupChild( 2367 void RenderWidgetHostViewAura::SetPopupChild(
2369 RenderWidgetHostViewAura* popup_child_host_view) { 2368 RenderWidgetHostViewAura* popup_child_host_view) {
2370 popup_child_host_view_ = popup_child_host_view; 2369 popup_child_host_view_ = popup_child_host_view;
2371 event_handler_->SetPopupChild( 2370 event_handler_->SetPopupChild(
2372 popup_child_host_view, 2371 popup_child_host_view,
2373 popup_child_host_view ? popup_child_host_view->event_handler() : nullptr); 2372 popup_child_host_view ? popup_child_host_view->event_handler() : nullptr);
2374 } 2373 }
2375 2374
2376 } // namespace content 2375 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698