Chromium Code Reviews| 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 a5587f4a0ed6fd32f1c4f4b4425422fa2d2b0c5b..e53234436810c5d06cae3b74a7e557e39f349c1d 100644 |
| --- a/chrome/browser/chromeos/options/network_config_view.cc |
| +++ b/chrome/browser/chromeos/options/network_config_view.cc |
| @@ -9,7 +9,7 @@ |
| #include "ash/shell.h" |
| #include "base/strings/string_util.h" |
| #include "base/strings/utf_string_conversions.h" |
| -#include "chrome/browser/chromeos/login/ui/login_display_host_impl.h" |
| +#include "chrome/browser/chromeos/login/ui/login_display_host.h" |
| #include "chrome/browser/chromeos/options/network_property_ui_data.h" |
| #include "chrome/browser/chromeos/options/vpn_config_view.h" |
| #include "chrome/browser/chromeos/options/wifi_config_view.h" |
| @@ -43,8 +43,8 @@ using views::Widget; |
| namespace { |
| gfx::NativeWindow GetParentForUnhostedDialog() { |
| - if (chromeos::LoginDisplayHostImpl::default_host()) { |
| - return chromeos::LoginDisplayHostImpl::default_host()->GetNativeWindow(); |
| + if (chromeos::LoginDisplayHost::default_host()) { |
|
achuithb
2016/01/21 23:14:31
move the anon namespace to within chromeos namespa
jdufault
2016/01/22 21:14:11
Done.
|
| + return chromeos::LoginDisplayHost::default_host()->GetNativeWindow(); |
| } else { |
| Browser* browser = chrome::FindTabbedBrowser( |
| ProfileManager::GetPrimaryUserProfile(), |