Index: chrome/browser/chromeos/login/oobe_base_test.cc |
diff --git a/chrome/browser/chromeos/login/oobe_base_test.cc b/chrome/browser/chromeos/login/oobe_base_test.cc |
index 1baae3f0c6c7216824b31ca9ca5b38d08487d6c4..68794defdb7bfc741fc503409ea66002fd6158c3 100644 |
--- a/chrome/browser/chromeos/login/oobe_base_test.cc |
+++ b/chrome/browser/chromeos/login/oobe_base_test.cc |
@@ -113,7 +113,7 @@ void OobeBaseTest::SetUpCommandLine(CommandLine* command_line) { |
void OobeBaseTest::SimulateNetworkOffline() { |
NetworkPortalDetector::CaptivePortalState offline_state; |
- offline_state.status = NetworkPortalDetector::CAPTIVE_PORTAL_STATUS_OFFLINE; |
+ offline_state.status = captive_portal::CAPTIVE_PORTAL_STATUS_OFFLINE; |
network_portal_detector_->SetDetectionResultsForTesting( |
kStubEthernetServicePath, offline_state); |
network_portal_detector_->NotifyObserversForTesting(); |
@@ -126,7 +126,7 @@ base::Closure OobeBaseTest::SimulateNetworkOfflineClosure() { |
void OobeBaseTest::SimulateNetworkOnline() { |
NetworkPortalDetector::CaptivePortalState online_state; |
- online_state.status = NetworkPortalDetector::CAPTIVE_PORTAL_STATUS_ONLINE; |
+ online_state.status = captive_portal::CAPTIVE_PORTAL_STATUS_ONLINE; |
online_state.response_code = 204; |
network_portal_detector_->SetDetectionResultsForTesting( |
kStubEthernetServicePath, online_state); |
@@ -140,7 +140,7 @@ base::Closure OobeBaseTest::SimulateNetworkOnlineClosure() { |
void OobeBaseTest::SimulateNetworkPortal() { |
NetworkPortalDetector::CaptivePortalState portal_state; |
- portal_state.status = NetworkPortalDetector::CAPTIVE_PORTAL_STATUS_PORTAL; |
+ portal_state.status = captive_portal::CAPTIVE_PORTAL_STATUS_PORTAL; |
network_portal_detector_->SetDetectionResultsForTesting( |
kStubEthernetServicePath, portal_state); |
network_portal_detector_->NotifyObserversForTesting(); |