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

Unified Diff: ui/aura/client/capture_delegate.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/aura/client/capture_client.cc ('k') | ui/aura/client/cursor_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/client/capture_delegate.h
diff --git a/ui/aura/client/capture_delegate.h b/ui/aura/client/capture_delegate.h
deleted file mode 100644
index 7ebcaee5b7eecbf53774da09daa6b850c7bc64c1..0000000000000000000000000000000000000000
--- a/ui/aura/client/capture_delegate.h
+++ /dev/null
@@ -1,39 +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_AURA_CLIENT_CAPTURE_DELEGATE_H_
-#define UI_AURA_CLIENT_CAPTURE_DELEGATE_H_
-
-#include "ui/aura/aura_export.h"
-
-namespace aura {
-class Window;
-namespace client {
-
-// This interface provides API to change the root Window's capture state without
-// exposing them as RootWindow API.
-class AURA_EXPORT CaptureDelegate {
- public:
- // Called when a capture is set on |new_capture| and/or a capture is
- // released on |old_capture|.
- // NOTE: |old_capture| and |new_capture| are not necessarily contained in the
- // window hierarchy of the delegate.
- virtual void UpdateCapture(aura::Window* old_capture,
- aura::Window* new_capture) = 0;
-
- // Called when another root gets capture.
- virtual void OnOtherRootGotCapture() = 0;
-
- // Sets/Release a native capture on host windows.
- virtual void SetNativeCapture() = 0;
- virtual void ReleaseNativeCapture() = 0;
-
- protected:
- virtual ~CaptureDelegate() {}
-};
-
-} // namespace client
-} // namespace aura
-
-#endif // UI_AURA_CLIENT_CAPTURE_DELEGATE_H_
« no previous file with comments | « ui/aura/client/capture_client.cc ('k') | ui/aura/client/cursor_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698