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

Unified Diff: ash/screen_util.cc

Issue 2095193002: clang-format all of //ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/scoped_target_root_window.cc ('k') | ash/screen_util_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/screen_util.cc
diff --git a/ash/screen_util.cc b/ash/screen_util.cc
index 439588e2278a153c397f2d6fbbc7edd1e43ad628..739da0bc8449d1c437f8761a33207fc4f922b76d 100644
--- a/ash/screen_util.cc
+++ b/ash/screen_util.cc
@@ -81,19 +81,19 @@ gfx::Rect ScreenUtil::GetShelfDisplayBoundsInRoot(aura::Window* window) {
// static
gfx::Rect ScreenUtil::ConvertRectToScreen(aura::Window* window,
- const gfx::Rect& rect) {
+ const gfx::Rect& rect) {
gfx::Point point = rect.origin();
- aura::client::GetScreenPositionClient(window->GetRootWindow())->
- ConvertPointToScreen(window, &point);
+ aura::client::GetScreenPositionClient(window->GetRootWindow())
+ ->ConvertPointToScreen(window, &point);
return gfx::Rect(point, rect.size());
}
// static
gfx::Rect ScreenUtil::ConvertRectFromScreen(aura::Window* window,
- const gfx::Rect& rect) {
+ const gfx::Rect& rect) {
gfx::Point point = rect.origin();
- aura::client::GetScreenPositionClient(window->GetRootWindow())->
- ConvertPointFromScreen(window, &point);
+ aura::client::GetScreenPositionClient(window->GetRootWindow())
+ ->ConvertPointFromScreen(window, &point);
return gfx::Rect(point, rect.size());
}
« no previous file with comments | « ash/scoped_target_root_window.cc ('k') | ash/screen_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698