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

Unified Diff: ui/aura/client/visibility_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/aura/client/screen_position_client.cc ('k') | ui/aura/client/visibility_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/client/visibility_client.h
diff --git a/ui/aura/client/visibility_client.h b/ui/aura/client/visibility_client.h
deleted file mode 100644
index b36cddc41b8c3db655ede510fc8393852bd596a8..0000000000000000000000000000000000000000
--- a/ui/aura/client/visibility_client.h
+++ /dev/null
@@ -1,37 +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_VISIBILITY_CLIENT_H_
-#define UI_AURA_CLIENT_VISIBILITY_CLIENT_H_
-
-#include "ui/aura/aura_export.h"
-
-namespace aura {
-class Window;
-namespace client {
-
-// An interface implemented by an object that manages the visibility of Windows'
-// layers as Window visibility changes.
-class AURA_EXPORT VisibilityClient {
- public:
- // Called when |window|'s visibility is changing to |visible|. The implementor
- // can decide whether or not to pass on the visibility to the underlying
- // layer.
- virtual void UpdateLayerVisibility(Window* window, bool visible) = 0;
-
- protected:
- virtual ~VisibilityClient() {}
-};
-
-// Sets the VisibilityClient on the Window.
-AURA_EXPORT void SetVisibilityClient(Window* window, VisibilityClient* client);
-
-// Gets the VisibilityClient for the window. This will crawl up |window|'s
-// hierarchy until it finds one.
-AURA_EXPORT VisibilityClient* GetVisibilityClient(Window* window);
-
-} // namespace clients
-} // namespace aura
-
-#endif // UI_AURA_CLIENT_VISIBILITY_CLIENT_H_
« no previous file with comments | « ui/aura/client/screen_position_client.cc ('k') | ui/aura/client/visibility_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698