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

Side by Side Diff: ui/aura/root_window.cc

Issue 8888037: Windows component build fix for aura. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: addressed comments Created 9 years 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
« no previous file with comments | « ui/aura/client/tooltip_client.h ('k') | ui/aura_shell/shell_tooltip_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "ui/aura/root_window.h" 5 #include "ui/aura/root_window.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/message_loop.h" 13 #include "base/message_loop.h"
14 #include "base/string_number_conversions.h" 14 #include "base/string_number_conversions.h"
15 #include "base/string_split.h" 15 #include "base/string_split.h"
16 #include "ui/aura/aura_switches.h" 16 #include "ui/aura/aura_switches.h"
17 #include "ui/aura/client/drag_drop_client.h"
17 #include "ui/aura/client/stacking_client.h" 18 #include "ui/aura/client/stacking_client.h"
19 #include "ui/aura/client/tooltip_client.h"
20 #include "ui/aura/client/window_drag_drop_delegate.h"
18 #include "ui/aura/root_window_host.h" 21 #include "ui/aura/root_window_host.h"
19 #include "ui/aura/root_window_observer.h" 22 #include "ui/aura/root_window_observer.h"
20 #include "ui/aura/event.h" 23 #include "ui/aura/event.h"
21 #include "ui/aura/event_filter.h" 24 #include "ui/aura/event_filter.h"
22 #include "ui/aura/focus_manager.h" 25 #include "ui/aura/focus_manager.h"
23 #include "ui/aura/screen_aura.h" 26 #include "ui/aura/screen_aura.h"
24 #include "ui/aura/window.h" 27 #include "ui/aura/window.h"
25 #include "ui/aura/window_delegate.h" 28 #include "ui/aura/window_delegate.h"
26 #include "ui/base/hit_test.h" 29 #include "ui/base/hit_test.h"
27 #include "ui/gfx/compositor/compositor.h" 30 #include "ui/gfx/compositor/compositor.h"
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 base::StringToInt(parts[1], &parsed_height) && parsed_height > 0) { 608 base::StringToInt(parts[1], &parsed_height) && parsed_height > 0) {
606 bounds.set_size(gfx::Size(parsed_width, parsed_height)); 609 bounds.set_size(gfx::Size(parsed_width, parsed_height));
607 } else if (use_fullscreen_host_window_) { 610 } else if (use_fullscreen_host_window_) {
608 bounds = gfx::Rect(RootWindowHost::GetNativeScreenSize()); 611 bounds = gfx::Rect(RootWindowHost::GetNativeScreenSize());
609 } 612 }
610 613
611 return bounds; 614 return bounds;
612 } 615 }
613 616
614 } // namespace aura 617 } // namespace aura
OLDNEW
« no previous file with comments | « ui/aura/client/tooltip_client.h ('k') | ui/aura_shell/shell_tooltip_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698