| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/chromeos/options/wimax_config_view.h" | 5 #include "chrome/browser/chromeos/options/wimax_config_view.h" |
| 6 | 6 |
| 7 #include "ash/system/chromeos/network/network_connect.h" | 7 #include "ash/system/chromeos/network/network_connect.h" |
| 8 #include "base/strings/string_util.h" | 8 #include "base/strings/string_util.h" |
| 9 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
| 11 #include "chrome/browser/chromeos/enrollment_dialog_view.h" | 11 #include "chrome/browser/chromeos/enrollment_dialog_view.h" |
| 12 #include "chrome/browser/chromeos/login/startup_utils.h" | 12 #include "chrome/browser/chromeos/login/startup_utils.h" |
| 13 #include "chrome/browser/chromeos/options/network_connect.h" | |
| 14 #include "chrome/browser/profiles/profile_manager.h" | 13 #include "chrome/browser/profiles/profile_manager.h" |
| 15 #include "chromeos/login/login_state.h" | 14 #include "chromeos/login/login_state.h" |
| 16 #include "chromeos/network/network_configuration_handler.h" | 15 #include "chromeos/network/network_configuration_handler.h" |
| 17 #include "chromeos/network/network_event_log.h" | 16 #include "chromeos/network/network_event_log.h" |
| 18 #include "chromeos/network/network_profile.h" | 17 #include "chromeos/network/network_profile.h" |
| 19 #include "chromeos/network/network_profile_handler.h" | 18 #include "chromeos/network/network_profile_handler.h" |
| 20 #include "chromeos/network/network_state.h" | 19 #include "chromeos/network/network_state.h" |
| 21 #include "chromeos/network/network_state_handler.h" | 20 #include "chromeos/network/network_state_handler.h" |
| 22 #include "chromeos/network/onc/onc_constants.h" | 21 #include "chromeos/network/onc/onc_constants.h" |
| 23 #include "grit/chromium_strings.h" | 22 #include "grit/chromium_strings.h" |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 } | 360 } |
| 362 } | 361 } |
| 363 | 362 |
| 364 void WimaxConfigView::InitFocus() { | 363 void WimaxConfigView::InitFocus() { |
| 365 views::View* view_to_focus = GetInitiallyFocusedView(); | 364 views::View* view_to_focus = GetInitiallyFocusedView(); |
| 366 if (view_to_focus) | 365 if (view_to_focus) |
| 367 view_to_focus->RequestFocus(); | 366 view_to_focus->RequestFocus(); |
| 368 } | 367 } |
| 369 | 368 |
| 370 } // namespace chromeos | 369 } // namespace chromeos |
| OLD | NEW |