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

Unified Diff: chrome/browser/chromeos/login/network_selection_view.cc

Issue 3397028: Hide "Change proxy settings link" during connection in progress. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 3 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/dom_ui/options_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/network_selection_view.cc
diff --git a/chrome/browser/chromeos/login/network_selection_view.cc b/chrome/browser/chromeos/login/network_selection_view.cc
index e084246f703952aec51bd2e1f3d60f5ae6a62356..6298e04ffe52829c950b40fb8ffa000717af480c 100644
--- a/chrome/browser/chromeos/login/network_selection_view.cc
+++ b/chrome/browser/chromeos/login/network_selection_view.cc
@@ -360,6 +360,7 @@ void NetworkSelectionView::ShowConnectingStatus(bool connecting,
select_network_label_->SetVisible(!connecting);
network_dropdown_->SetVisible(!connecting);
continue_button_->SetVisible(!connecting);
+ proxy_settings_link_->SetVisible(!connecting);
connecting_network_label_->SetVisible(connecting);
InitLayout();
Layout();
@@ -390,7 +391,7 @@ bool NetworkSelectionView::IsContinueEnabled() const {
void NetworkSelectionView::LinkActivated(views::Link* source, int) {
if (source == proxy_settings_link_) {
if (!proxy_settings_dialog_.get()) {
- static const char kProxySettingsURL[] = "chrome://options/proxy";
+ static const char kProxySettingsURL[] = "chrome://settings/proxy";
proxy_settings_dialog_.reset(new LoginHtmlDialog(
this,
GetNativeWindow(),
« no previous file with comments | « no previous file | chrome/browser/dom_ui/options_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698