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

Unified Diff: ui/wm/public/window_move_client.h

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 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 | « ui/wm/public/transient_window_client.cc ('k') | ui/wm/public/window_move_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/wm/public/window_move_client.h
diff --git a/ui/wm/public/window_move_client.h b/ui/wm/public/window_move_client.h
deleted file mode 100644
index b8943d3eb376d423db682977c63e458c5be94e7a..0000000000000000000000000000000000000000
--- a/ui/wm/public/window_move_client.h
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef UI_WM_PUBLIC_WINDOW_MOVE_CLIENT_H_
-#define UI_WM_PUBLIC_WINDOW_MOVE_CLIENT_H_
-
-#include "ui/aura/aura_export.h"
-#include "ui/gfx/vector2d.h"
-
-namespace gfx {
-class Point;
-}
-
-namespace aura {
-class Window;
-namespace client {
-
-enum WindowMoveResult {
- MOVE_SUCCESSFUL, // Moving window was successful.
- MOVE_CANCELED // Moving window was canceled.
-};
-
-enum WindowMoveSource {
- WINDOW_MOVE_SOURCE_MOUSE,
- WINDOW_MOVE_SOURCE_TOUCH,
-};
-
-// An interface implemented by an object that manages programatically keyed
-// window moving.
-class AURA_EXPORT WindowMoveClient {
- public:
- // Starts a nested message loop for moving the window. |drag_offset| is the
- // offset from the window origin to the cursor when the drag was started.
- // Returns MOVE_SUCCESSFUL if the move has completed successfully, or
- // MOVE_CANCELED otherwise.
- virtual WindowMoveResult RunMoveLoop(Window* window,
- const gfx::Vector2d& drag_offset,
- WindowMoveSource source) = 0;
-
- // Ends a previously started move loop.
- virtual void EndMoveLoop() = 0;
-
- protected:
- virtual ~WindowMoveClient() {}
-};
-
-// Sets/Gets the activation client for the specified window.
-AURA_EXPORT void SetWindowMoveClient(Window* window,
- WindowMoveClient* client);
-AURA_EXPORT WindowMoveClient* GetWindowMoveClient(Window* window);
-
-} // namespace client
-} // namespace aura
-
-#endif // UI_WM_PUBLIC_WINDOW_MOVE_CLIENT_H_
« no previous file with comments | « ui/wm/public/transient_window_client.cc ('k') | ui/wm/public/window_move_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698