| Index: chrome/browser/chromeos/ui/choose_mobile_network_dialog.h
|
| diff --git a/chrome/browser/chromeos/ui/choose_mobile_network_dialog.h b/chrome/browser/chromeos/ui/choose_mobile_network_dialog.h
|
| index 0d656306db39fcef21da1f37489de4d6f8cc697a..3808d3704f2dff63473121ba992f7514913cb05d 100644
|
| --- a/chrome/browser/chromeos/ui/choose_mobile_network_dialog.h
|
| +++ b/chrome/browser/chromeos/ui/choose_mobile_network_dialog.h
|
| @@ -5,7 +5,6 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_UI_CHOOSE_MOBILE_NETWORK_DIALOG_H_
|
| #define CHROME_BROWSER_CHROMEOS_UI_CHOOSE_MOBILE_NETWORK_DIALOG_H_
|
|
|
| -#include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| #include "ui/gfx/native_widget_types.h"
|
| #include "ui/web_dialogs/web_dialog_delegate.h"
|
| @@ -15,8 +14,13 @@ namespace chromeos {
|
| // Dialog for manual selection of cellular network.
|
| class ChooseMobileNetworkDialog : public ui::WebDialogDelegate {
|
| public:
|
| - // Shows the dialog box.
|
| - static void ShowDialog(gfx::NativeWindow owning_window);
|
| + // Shows the dialog box. The dialog is created as a child of |parent|. If the
|
| + // |parent| is null the dialog is created in the default modal container.
|
| + static void ShowDialog(gfx::NativeWindow parent);
|
| +
|
| + // Shows the dialog in an ash window container (which must be a system modal
|
| + // container) on the primary display.
|
| + static void ShowDialogInContainer(int container_id);
|
|
|
| private:
|
| ChooseMobileNetworkDialog();
|
|
|