Index: mandoline/ui/aura/native_widget_view_manager.h |
diff --git a/mandoline/ui/aura/native_widget_view_manager.h b/mandoline/ui/aura/native_widget_view_manager.h |
deleted file mode 100644 |
index 93b99fd880d0c4453e60c2be0d28fba6156102e9..0000000000000000000000000000000000000000 |
--- a/mandoline/ui/aura/native_widget_view_manager.h |
+++ /dev/null |
@@ -1,70 +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. |
- |
-#ifndef MANDOLINE_UI_AURA_NATIVE_WIDGET_VIEW_MANAGER_H_ |
-#define MANDOLINE_UI_AURA_NATIVE_WIDGET_VIEW_MANAGER_H_ |
- |
-#include "ui/views/widget/native_widget_aura.h" |
- |
-namespace aura { |
-namespace client { |
-class DefaultCaptureClient; |
-} |
-} |
- |
-namespace ui { |
-namespace internal { |
-class InputMethodDelegate; |
-} |
-} |
- |
-namespace wm { |
-class FocusController; |
-} |
- |
-namespace mojo { |
-class Shell; |
-} |
- |
-namespace mus { |
-class View; |
-} |
- |
-namespace mandoline { |
- |
-namespace { |
-class NativeWidgetViewObserver; |
-} |
- |
-class WindowTreeHostMojo; |
- |
-class NativeWidgetViewManager : public views::NativeWidgetAura { |
- public: |
- NativeWidgetViewManager(views::internal::NativeWidgetDelegate* delegate, |
- mojo::Shell* shell, |
- mus::View* view); |
- ~NativeWidgetViewManager() override; |
- |
- private: |
- friend class NativeWidgetViewObserver; |
- |
- // Overridden from internal::NativeWidgetAura: |
- void InitNativeWidget(const views::Widget::InitParams& in_params) override; |
- void OnWindowVisibilityChanged(aura::Window* window, bool visible) override; |
- |
- scoped_ptr<WindowTreeHostMojo> window_tree_host_; |
- scoped_ptr<NativeWidgetViewObserver> view_observer_; |
- |
- scoped_ptr<wm::FocusController> focus_client_; |
- |
- mus::View* view_; |
- |
- scoped_ptr<aura::client::DefaultCaptureClient> capture_client_; |
- |
- DISALLOW_COPY_AND_ASSIGN(NativeWidgetViewManager); |
-}; |
- |
-} // namespace mandoline |
- |
-#endif // MANDOLINE_UI_AURA_NATIVE_WIDGET_VIEW_MANAGER_H_ |