| Index: chrome/browser/chromeos/options/network_config_view.cc
|
| diff --git a/chrome/browser/chromeos/options/network_config_view.cc b/chrome/browser/chromeos/options/network_config_view.cc
|
| index 50446a668cad1c24c50f4928ef55734d4e4827ce..034d83a4f62569aa20f3dbfb836f6ca3acfe4f1b 100644
|
| --- a/chrome/browser/chromeos/options/network_config_view.cc
|
| +++ b/chrome/browser/chromeos/options/network_config_view.cc
|
| @@ -117,22 +117,20 @@ NetworkConfigView::~NetworkConfigView() {
|
| }
|
|
|
| // static
|
| -bool NetworkConfigView::Show(Network* network, gfx::NativeWindow parent) {
|
| +void NetworkConfigView::Show(Network* network, gfx::NativeWindow parent) {
|
| if (GetActiveDialog() != NULL)
|
| - return false;
|
| + return;
|
| NetworkConfigView* view = new NetworkConfigView(network);
|
| view->ShowDialog(parent);
|
| - return true;
|
| }
|
|
|
| // static
|
| -bool NetworkConfigView::ShowForType(ConnectionType type,
|
| +void NetworkConfigView::ShowForType(ConnectionType type,
|
| gfx::NativeWindow parent) {
|
| if (GetActiveDialog() != NULL)
|
| - return false;
|
| + return;
|
| NetworkConfigView* view = new NetworkConfigView(type);
|
| view->ShowDialog(parent);
|
| - return true;
|
| }
|
|
|
| gfx::NativeWindow NetworkConfigView::GetNativeWindow() const {
|
|
|