Index: chrome/browser/chromeos/login/background_view.cc |
diff --git a/chrome/browser/chromeos/login/background_view.cc b/chrome/browser/chromeos/login/background_view.cc |
index 1e7cff11d96840cc61c0b8b0379784d30e1d61a5..0835444d6fefdd022943a90e073cd08cf94c070b 100644 |
--- a/chrome/browser/chromeos/login/background_view.cc |
+++ b/chrome/browser/chromeos/login/background_view.cc |
@@ -242,14 +242,14 @@ void BackgroundView::ChildPreferredSizeChanged(View* child) { |
bool BackgroundView::ShouldExecuteStatusAreaCommand( |
const views::View* button_view, int command_id) const { |
- if (command_id == StatusAreaViewChromeos::SHOW_NETWORK_OPTIONS) |
+ if (command_id == StatusAreaButton::Delegate::SHOW_NETWORK_OPTIONS) |
return true; |
return false; |
} |
void BackgroundView::ExecuteStatusAreaCommand( |
const views::View* button_view, int command_id) { |
- if (command_id == StatusAreaViewChromeos::SHOW_NETWORK_OPTIONS) { |
+ if (command_id == StatusAreaButton::Delegate::SHOW_NETWORK_OPTIONS) { |
if (proxy_settings_dialog_.get() == NULL) { |
proxy_settings_dialog_.reset(new ProxySettingsDialog( |
this, GetNativeWindow())); |