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

Side by Side Diff: chrome/browser/ui/native_window_deletion_observer.h

Issue 662073002: Fix crash when user closes window prior to the "Confirm Install" prompt showing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/install_prompt_navigator
Patch Set: Created 6 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 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.
4
5 #ifndef CHROME_BROWSER_UI_NATIVE_WINDOW_DELETION_OBSERVER_H_
6 #define CHROME_BROWSER_UI_NATIVE_WINDOW_DELETION_OBSERVER_H_
7
8 #include "base/memory/scoped_ptr.h"
9 #include "ui/gfx/native_widget_types.h"
10
11 // An observer which can be probed for the life of a gfx::NativeWindow.
12 class NativeWindowDeletionObserver {
sky 2014/10/24 20:22:56 I would be inclined to name this NativeWindowTrack
13 public:
14 static scoped_ptr<NativeWindowDeletionObserver> Create(
sky 2014/10/24 20:22:56 style guide says constructor/destructor before oth
15 gfx::NativeWindow window);
16
17 virtual ~NativeWindowDeletionObserver() {}
18
19 // Returns true if the native window passed to Create() is still alive.
20 virtual bool IsNativeWindowAlive() const = 0;
21 };
22
23 #endif // CHROME_BROWSER_UI_NATIVE_WINDOW_DELETION_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698