summaryrefslogtreecommitdiffstats
path: root/chromium/ui/aura/client/activation_delegate.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ui/aura/client/activation_delegate.cc')
-rw-r--r--chromium/ui/aura/client/activation_delegate.cc27
1 files changed, 0 insertions, 27 deletions
diff --git a/chromium/ui/aura/client/activation_delegate.cc b/chromium/ui/aura/client/activation_delegate.cc
deleted file mode 100644
index 51b22b00a61..00000000000
--- a/chromium/ui/aura/client/activation_delegate.cc
+++ /dev/null
@@ -1,27 +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.
-
-#include "ui/aura/client/activation_delegate.h"
-
-#include "ui/aura/window.h"
-#include "ui/aura/window_property.h"
-
-DECLARE_WINDOW_PROPERTY_TYPE(aura::client::ActivationDelegate*)
-
-namespace aura {
-namespace client {
-
-DEFINE_LOCAL_WINDOW_PROPERTY_KEY(
- ActivationDelegate*, kActivationDelegateKey, NULL);
-
-void SetActivationDelegate(Window* window, ActivationDelegate* delegate) {
- window->SetProperty(kActivationDelegateKey, delegate);
-}
-
-ActivationDelegate* GetActivationDelegate(Window* window) {
- return window->GetProperty(kActivationDelegateKey);
-}
-
-} // namespace client
-} // namespace aura