1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/views/widget/widget_deletion_observer.h"
7 #include "ui/views/widget/widget.h"
11 WidgetDeletionObserver::WidgetDeletionObserver(Widget
* widget
)
14 widget_
->AddObserver(this);
17 WidgetDeletionObserver::~WidgetDeletionObserver() {
21 void WidgetDeletionObserver::OnWidgetDestroying(Widget
* widget
) {
25 void WidgetDeletionObserver::CleanupWidget() {
27 widget_
->RemoveObserver(this);