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

Unified Diff: ash/common/system/tray/tray_bubble_wrapper.h

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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 | « ash/common/system/tray/tray_background_view.cc ('k') | ash/common/system/tray/tray_bubble_wrapper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/tray/tray_bubble_wrapper.h
diff --git a/ash/common/system/tray/tray_bubble_wrapper.h b/ash/common/system/tray/tray_bubble_wrapper.h
deleted file mode 100644
index d5f0c44c8197b3455967ca2680a334f6a0cade46..0000000000000000000000000000000000000000
--- a/ash/common/system/tray/tray_bubble_wrapper.h
+++ /dev/null
@@ -1,48 +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 ASH_COMMON_SYSTEM_TRAY_TRAY_BUBBLE_WRAPPER_H_
-#define ASH_COMMON_SYSTEM_TRAY_TRAY_BUBBLE_WRAPPER_H_
-
-#include "base/macros.h"
-#include "ui/views/widget/widget_observer.h"
-
-namespace views {
-class TrayBubbleView;
-}
-
-namespace ash {
-class TrayBackgroundView;
-
-// Creates and manages the Widget and EventFilter components of a bubble.
-
-class TrayBubbleWrapper : public views::WidgetObserver {
- public:
- TrayBubbleWrapper(TrayBackgroundView* tray,
- views::TrayBubbleView* bubble_view);
- ~TrayBubbleWrapper() override;
-
- // views::WidgetObserver overrides:
- void OnWidgetDestroying(views::Widget* widget) override;
- void OnWidgetBoundsChanged(views::Widget* widget,
- const gfx::Rect& new_bounds) override;
-
- const TrayBackgroundView* tray() const { return tray_; }
- TrayBackgroundView* tray() { return tray_; }
- views::TrayBubbleView* bubble_view() { return bubble_view_; }
- const views::TrayBubbleView* bubble_view() const { return bubble_view_; }
- views::Widget* bubble_widget() { return bubble_widget_; }
- const views::Widget* bubble_widget() const { return bubble_widget_; }
-
- private:
- TrayBackgroundView* tray_;
- views::TrayBubbleView* bubble_view_; // unowned
- views::Widget* bubble_widget_;
-
- DISALLOW_COPY_AND_ASSIGN(TrayBubbleWrapper);
-};
-
-} // namespace ash
-
-#endif // ASH_COMMON_SYSTEM_TRAY_TRAY_BUBBLE_WRAPPER_H_
« no previous file with comments | « ash/common/system/tray/tray_background_view.cc ('k') | ash/common/system/tray/tray_bubble_wrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698