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

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

Issue 174803002: Move root_window.* to window_event_dispatcher.* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 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 | Annotate | Revision Log
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 "base/auto_reset.h" 7 #include "base/auto_reset.h"
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/callback_helpers.h" 10 #include "base/callback_helpers.h"
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 #include "ui/aura/client/aura_constants.h" 51 #include "ui/aura/client/aura_constants.h"
52 #include "ui/aura/client/cursor_client.h" 52 #include "ui/aura/client/cursor_client.h"
53 #include "ui/aura/client/cursor_client_observer.h" 53 #include "ui/aura/client/cursor_client_observer.h"
54 #include "ui/aura/client/focus_client.h" 54 #include "ui/aura/client/focus_client.h"
55 #include "ui/aura/client/scoped_tooltip_disabler.h" 55 #include "ui/aura/client/scoped_tooltip_disabler.h"
56 #include "ui/aura/client/screen_position_client.h" 56 #include "ui/aura/client/screen_position_client.h"
57 #include "ui/aura/client/tooltip_client.h" 57 #include "ui/aura/client/tooltip_client.h"
58 #include "ui/aura/client/transient_window_client.h" 58 #include "ui/aura/client/transient_window_client.h"
59 #include "ui/aura/client/window_tree_client.h" 59 #include "ui/aura/client/window_tree_client.h"
60 #include "ui/aura/env.h" 60 #include "ui/aura/env.h"
61 #include "ui/aura/root_window.h"
62 #include "ui/aura/window.h" 61 #include "ui/aura/window.h"
62 #include "ui/aura/window_event_dispatcher.h"
63 #include "ui/aura/window_observer.h" 63 #include "ui/aura/window_observer.h"
64 #include "ui/aura/window_tracker.h" 64 #include "ui/aura/window_tracker.h"
65 #include "ui/base/clipboard/scoped_clipboard_writer.h" 65 #include "ui/base/clipboard/scoped_clipboard_writer.h"
66 #include "ui/base/hit_test.h" 66 #include "ui/base/hit_test.h"
67 #include "ui/base/ime/input_method.h" 67 #include "ui/base/ime/input_method.h"
68 #include "ui/base/ui_base_types.h" 68 #include "ui/base/ui_base_types.h"
69 #include "ui/compositor/compositor_vsync_manager.h" 69 #include "ui/compositor/compositor_vsync_manager.h"
70 #include "ui/compositor/layer.h" 70 #include "ui/compositor/layer.h"
71 #include "ui/events/event.h" 71 #include "ui/events/event.h"
72 #include "ui/events/event_utils.h" 72 #include "ui/events/event_utils.h"
(...skipping 3519 matching lines...) Expand 10 before | Expand all | Expand 10 after
3592 RenderWidgetHost* widget) { 3592 RenderWidgetHost* widget) {
3593 return new RenderWidgetHostViewAura(widget); 3593 return new RenderWidgetHostViewAura(widget);
3594 } 3594 }
3595 3595
3596 // static 3596 // static
3597 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) { 3597 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) {
3598 GetScreenInfoForWindow(results, NULL); 3598 GetScreenInfoForWindow(results, NULL);
3599 } 3599 }
3600 3600
3601 } // namespace content 3601 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698