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

Unified Diff: chrome/browser/chromeos/options/options_window_view.cc

Issue 2501001: Update dialog parent handling logic. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 7 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 | « no previous file | chrome/browser/gtk/gtk_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/options/options_window_view.cc
diff --git a/chrome/browser/chromeos/options/options_window_view.cc b/chrome/browser/chromeos/options/options_window_view.cc
index c072787941f12c169b23a2a567f16ce5935b4918..d284ce342a6016cfe62220cc848f6546f808c4f8 100644
--- a/chrome/browser/chromeos/options/options_window_view.cc
+++ b/chrome/browser/chromeos/options/options_window_view.cc
@@ -307,8 +307,16 @@ void CloseOptionsWindow() {
}
gfx::NativeWindow GetOptionsViewParent() {
- if (Browser* b = BrowserList::GetLastActive())
- return b->window()->GetNativeHandle();
+ if (Browser* b = BrowserList::GetLastActive()) {
+ if (b->type() != Browser::TYPE_NORMAL) {
+ b = BrowserList::FindBrowserWithType(b->profile(),
sky 2010/06/02 17:44:12 FindBrowserWithType searches in order of activatio
xiyuan 2010/06/02 17:48:08 The reason for doing this is FindBrowserWithType e
sky 2010/06/02 17:52:22 Ah ok. That makes sense.
+ Browser::TYPE_NORMAL,
+ true);
+ }
+
+ if (b)
+ return b->window()->GetNativeHandle();
+ }
return NULL;
}
« no previous file with comments | « no previous file | chrome/browser/gtk/gtk_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698