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

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

Issue 2652343003: Replace source pointer in cc::CopyOutputRequest with a base::UnguessableToken (Closed)
Patch Set: c Created 3 years, 10 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 25 matching lines...) Expand all
36 #include "content/browser/renderer_host/input/synthetic_gesture_target_aura.h" 36 #include "content/browser/renderer_host/input/synthetic_gesture_target_aura.h"
37 #include "content/browser/renderer_host/input/touch_selection_controller_client_ aura.h" 37 #include "content/browser/renderer_host/input/touch_selection_controller_client_ aura.h"
38 #include "content/browser/renderer_host/overscroll_controller.h" 38 #include "content/browser/renderer_host/overscroll_controller.h"
39 #include "content/browser/renderer_host/render_view_host_delegate.h" 39 #include "content/browser/renderer_host/render_view_host_delegate.h"
40 #include "content/browser/renderer_host/render_view_host_delegate_view.h" 40 #include "content/browser/renderer_host/render_view_host_delegate_view.h"
41 #include "content/browser/renderer_host/render_view_host_impl.h" 41 #include "content/browser/renderer_host/render_view_host_impl.h"
42 #include "content/browser/renderer_host/render_widget_host_delegate.h" 42 #include "content/browser/renderer_host/render_widget_host_delegate.h"
43 #include "content/browser/renderer_host/render_widget_host_impl.h" 43 #include "content/browser/renderer_host/render_widget_host_impl.h"
44 #include "content/browser/renderer_host/render_widget_host_input_event_router.h" 44 #include "content/browser/renderer_host/render_widget_host_input_event_router.h"
45 #include "content/browser/renderer_host/render_widget_host_view_event_handler.h" 45 #include "content/browser/renderer_host/render_widget_host_view_event_handler.h"
46 #include "content/browser/renderer_host/render_widget_host_view_frame_subscriber .h"
46 #include "content/browser/renderer_host/ui_events_helper.h" 47 #include "content/browser/renderer_host/ui_events_helper.h"
47 #include "content/common/content_switches_internal.h" 48 #include "content/common/content_switches_internal.h"
48 #include "content/common/input_messages.h" 49 #include "content/common/input_messages.h"
49 #include "content/common/render_widget_window_tree_client_factory.mojom.h" 50 #include "content/common/render_widget_window_tree_client_factory.mojom.h"
50 #include "content/common/site_isolation_policy.h" 51 #include "content/common/site_isolation_policy.h"
51 #include "content/common/text_input_state.h" 52 #include "content/common/text_input_state.h"
52 #include "content/common/view_messages.h" 53 #include "content/common/view_messages.h"
53 #include "content/public/browser/content_browser_client.h" 54 #include "content/public/browser/content_browser_client.h"
54 #include "content/public/browser/overscroll_configuration.h" 55 #include "content/public/browser/overscroll_configuration.h"
55 #include "content/public/browser/render_view_host.h" 56 #include "content/public/browser/render_view_host.h"
56 #include "content/public/browser/render_widget_host_view_frame_subscriber.h"
57 #include "content/public/browser/user_metrics.h" 57 #include "content/public/browser/user_metrics.h"
58 #include "content/public/common/child_process_host.h" 58 #include "content/public/common/child_process_host.h"
59 #include "content/public/common/content_switches.h" 59 #include "content/public/common/content_switches.h"
60 #include "gpu/ipc/common/gpu_messages.h" 60 #include "gpu/ipc/common/gpu_messages.h"
61 #include "services/service_manager/public/cpp/interface_provider.h" 61 #include "services/service_manager/public/cpp/interface_provider.h"
62 #include "services/ui/public/interfaces/window_manager_constants.mojom.h" 62 #include "services/ui/public/interfaces/window_manager_constants.mojom.h"
63 #include "third_party/WebKit/public/platform/WebInputEvent.h" 63 #include "third_party/WebKit/public/platform/WebInputEvent.h"
64 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" 64 #include "third_party/WebKit/public/web/WebCompositionUnderline.h"
65 #include "ui/aura/client/aura_constants.h" 65 #include "ui/aura/client/aura_constants.h"
66 #include "ui/aura/client/cursor_client.h" 66 #include "ui/aura/client/cursor_client.h"
(...skipping 2320 matching lines...) Expand 10 before | Expand all | Expand 10 after
2387 2387
2388 void RenderWidgetHostViewAura::SetPopupChild( 2388 void RenderWidgetHostViewAura::SetPopupChild(
2389 RenderWidgetHostViewAura* popup_child_host_view) { 2389 RenderWidgetHostViewAura* popup_child_host_view) {
2390 popup_child_host_view_ = popup_child_host_view; 2390 popup_child_host_view_ = popup_child_host_view;
2391 event_handler_->SetPopupChild( 2391 event_handler_->SetPopupChild(
2392 popup_child_host_view, 2392 popup_child_host_view,
2393 popup_child_host_view ? popup_child_host_view->event_handler() : nullptr); 2393 popup_child_host_view ? popup_child_host_view->event_handler() : nullptr);
2394 } 2394 }
2395 2395
2396 } // namespace content 2396 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698