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

Unified Diff: chrome/browser/views/modal_dialog_delegate.cc

Issue 3538012: Use BubbleWindow for ChromeOS windows/dialogs. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: fix win trybot Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/views/js_modal_dialog_views.cc ('k') | chrome/browser/views/page_info_window_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/modal_dialog_delegate.cc
diff --git a/chrome/browser/views/modal_dialog_delegate.cc b/chrome/browser/views/modal_dialog_delegate.cc
index a0f91ba955065e97492ad85a286da3642d704ef3..a08d611c4ff3e592d568a86e632b1093890529f3 100644
--- a/chrome/browser/views/modal_dialog_delegate.cc
+++ b/chrome/browser/views/modal_dialog_delegate.cc
@@ -1,10 +1,11 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 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.
#include "chrome/browser/views/modal_dialog_delegate.h"
#include "base/logging.h"
+#include "chrome/browser/views/window.h"
#include "views/window/window.h"
void ModalDialogDelegate::ShowModalDialog() {
@@ -14,7 +15,7 @@ void ModalDialogDelegate::ShowModalDialog() {
if (!root_hwnd) {
Cancel();
} else {
- dialog_ = views::Window::CreateChromeWindow(root_hwnd, gfx::Rect(), this);
+ dialog_ = browser::CreateViewsWindow(root_hwnd, gfx::Rect(), this);
dialog_->Show();
}
}
« no previous file with comments | « chrome/browser/views/js_modal_dialog_views.cc ('k') | chrome/browser/views/page_info_window_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698