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

Side by Side Diff: ui/wm/core/default_screen_position_client.cc

Issue 823703003: Cleanup: Update the path to insets and point headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: point.h Created 6 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/wm/core/cursor_manager.h ('k') | ui/wm/core/user_activity_detector_unittest.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/wm/core/default_screen_position_client.h" 5 #include "ui/wm/core/default_screen_position_client.h"
6 6
7 #include "ui/aura/window_tree_host.h" 7 #include "ui/aura/window_tree_host.h"
8 #include "ui/gfx/display.h" 8 #include "ui/gfx/display.h"
9 #include "ui/gfx/point_conversions.h" 9 #include "ui/gfx/geometry/point_conversions.h"
10 #include "ui/gfx/screen.h" 10 #include "ui/gfx/screen.h"
11 11
12 namespace wm { 12 namespace wm {
13 13
14 DefaultScreenPositionClient::DefaultScreenPositionClient() { 14 DefaultScreenPositionClient::DefaultScreenPositionClient() {
15 } 15 }
16 16
17 DefaultScreenPositionClient::~DefaultScreenPositionClient() { 17 DefaultScreenPositionClient::~DefaultScreenPositionClient() {
18 } 18 }
19 19
(...skipping 30 matching lines...) Expand all
50 ConvertPointToScreen(root_window, point); 50 ConvertPointToScreen(root_window, point);
51 } 51 }
52 52
53 void DefaultScreenPositionClient::SetBounds(aura::Window* window, 53 void DefaultScreenPositionClient::SetBounds(aura::Window* window,
54 const gfx::Rect& bounds, 54 const gfx::Rect& bounds,
55 const gfx::Display& display) { 55 const gfx::Display& display) {
56 window->SetBounds(bounds); 56 window->SetBounds(bounds);
57 } 57 }
58 58
59 } // namespace wm 59 } // namespace wm
OLDNEW
« no previous file with comments | « ui/wm/core/cursor_manager.h ('k') | ui/wm/core/user_activity_detector_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698