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

Unified Diff: ash/wm/common/drag_details.cc

Issue 2030593002: Renames ash/wm/common into ash/common/wm (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/wm/common/drag_details.h ('k') | ash/wm/common/fullscreen_window_finder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/common/drag_details.cc
diff --git a/ash/wm/common/drag_details.cc b/ash/wm/common/drag_details.cc
deleted file mode 100644
index 1248b5cbfa9f755cdd1a144afbea1e4b778fa4f1..0000000000000000000000000000000000000000
--- a/ash/wm/common/drag_details.cc
+++ /dev/null
@@ -1,74 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ash/wm/common/drag_details.h"
-
-#include "ash/wm/common/window_resizer.h"
-#include "ash/wm/common/wm_window.h"
-#include "ui/base/hit_test.h"
-#include "ui/compositor/layer.h"
-
-namespace ash {
-
-namespace {
-
-int GetSizeChangeDirectionForWindowComponent(int window_component) {
- int size_change_direction = WindowResizer::kBoundsChangeDirection_None;
- switch (window_component) {
- case HTTOPLEFT:
- case HTTOPRIGHT:
- case HTBOTTOMLEFT:
- case HTBOTTOMRIGHT:
- case HTGROWBOX:
- case HTCAPTION:
- size_change_direction |=
- WindowResizer::kBoundsChangeDirection_Horizontal |
- WindowResizer::kBoundsChangeDirection_Vertical;
- break;
- case HTTOP:
- case HTBOTTOM:
- size_change_direction |= WindowResizer::kBoundsChangeDirection_Vertical;
- break;
- case HTRIGHT:
- case HTLEFT:
- size_change_direction |= WindowResizer::kBoundsChangeDirection_Horizontal;
- break;
- default:
- break;
- }
- return size_change_direction;
-}
-
-} // namespace
-
-DragDetails::DragDetails(wm::WmWindow* window,
- const gfx::Point& location,
- int window_component,
- aura::client::WindowMoveSource source)
- : initial_state_type(window->GetWindowState()->GetStateType()),
- initial_bounds_in_parent(window->GetBounds()),
- initial_location_in_parent(location),
- initial_opacity(window->GetLayer()->opacity()),
- window_component(window_component),
- bounds_change(
- WindowResizer::GetBoundsChangeForWindowComponent(window_component)),
- position_change_direction(
- WindowResizer::GetPositionChangeDirectionForWindowComponent(
- window_component)),
- size_change_direction(
- GetSizeChangeDirectionForWindowComponent(window_component)),
- is_resizable(bounds_change != WindowResizer::kBoundsChangeDirection_None),
- source(source),
- should_attach_to_shelf(window->GetType() == ui::wm::WINDOW_TYPE_PANEL &&
- window->GetWindowState()->panel_attached()) {
- wm::WindowState* window_state = window->GetWindowState();
- if ((window_state->IsNormalOrSnapped() || window_state->IsDocked()) &&
- window_state->HasRestoreBounds() && window_component == HTCAPTION) {
- restore_bounds = window_state->GetRestoreBoundsInScreen();
- }
-}
-
-DragDetails::~DragDetails() {}
-
-} // namespace ash
« no previous file with comments | « ash/wm/common/drag_details.h ('k') | ash/wm/common/fullscreen_window_finder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698