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

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

Issue 2438853002: Renames aura::client::WindowTreeClient to WindowParentingClient (Closed)
Patch Set: cleanup Created 4 years, 2 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 #include "content/public/common/child_process_host.h" 55 #include "content/public/common/child_process_host.h"
56 #include "content/public/common/content_switches.h" 56 #include "content/public/common/content_switches.h"
57 #include "gpu/ipc/common/gpu_messages.h" 57 #include "gpu/ipc/common/gpu_messages.h"
58 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" 58 #include "third_party/WebKit/public/web/WebCompositionUnderline.h"
59 #include "third_party/WebKit/public/web/WebInputEvent.h" 59 #include "third_party/WebKit/public/web/WebInputEvent.h"
60 #include "ui/aura/client/aura_constants.h" 60 #include "ui/aura/client/aura_constants.h"
61 #include "ui/aura/client/cursor_client.h" 61 #include "ui/aura/client/cursor_client.h"
62 #include "ui/aura/client/cursor_client_observer.h" 62 #include "ui/aura/client/cursor_client_observer.h"
63 #include "ui/aura/client/focus_client.h" 63 #include "ui/aura/client/focus_client.h"
64 #include "ui/aura/client/screen_position_client.h" 64 #include "ui/aura/client/screen_position_client.h"
65 #include "ui/aura/client/window_tree_client.h" 65 #include "ui/aura/client/window_parenting_client.h"
66 #include "ui/aura/env.h" 66 #include "ui/aura/env.h"
67 #include "ui/aura/window.h" 67 #include "ui/aura/window.h"
68 #include "ui/aura/window_event_dispatcher.h" 68 #include "ui/aura/window_event_dispatcher.h"
69 #include "ui/aura/window_observer.h" 69 #include "ui/aura/window_observer.h"
70 #include "ui/aura/window_tree_host.h" 70 #include "ui/aura/window_tree_host.h"
71 #include "ui/base/clipboard/scoped_clipboard_writer.h" 71 #include "ui/base/clipboard/scoped_clipboard_writer.h"
72 #include "ui/base/hit_test.h" 72 #include "ui/base/hit_test.h"
73 #include "ui/base/ime/input_method.h" 73 #include "ui/base/ime/input_method.h"
74 #include "ui/base/ui_base_types.h" 74 #include "ui/base/ui_base_types.h"
75 #include "ui/compositor/compositor_vsync_manager.h" 75 #include "ui/compositor/compositor_vsync_manager.h"
(...skipping 3004 matching lines...) Expand 10 before | Expand all | Expand 10 after
3080 ->GetTextSelection(focused_view) 3080 ->GetTextSelection(focused_view)
3081 ->GetSelectedText(&selected_text)) { 3081 ->GetSelectedText(&selected_text)) {
3082 // Set the CLIPBOARD_TYPE_SELECTION to the ui::Clipboard. 3082 // Set the CLIPBOARD_TYPE_SELECTION to the ui::Clipboard.
3083 ui::ScopedClipboardWriter clipboard_writer(ui::CLIPBOARD_TYPE_SELECTION); 3083 ui::ScopedClipboardWriter clipboard_writer(ui::CLIPBOARD_TYPE_SELECTION);
3084 clipboard_writer.WriteText(selected_text); 3084 clipboard_writer.WriteText(selected_text);
3085 } 3085 }
3086 #endif // defined(USE_X11) && !defined(OS_CHROMEOS) 3086 #endif // defined(USE_X11) && !defined(OS_CHROMEOS)
3087 } 3087 }
3088 3088
3089 } // namespace content 3089 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698