Index: chrome/browser/speech/speech_recognizer_unittest.cc |
diff --git a/chrome/browser/speech/speech_recognizer_unittest.cc b/chrome/browser/speech/speech_recognizer_unittest.cc |
index 44967b1558f835ccf62634ab2cbe601ea82ad4d6..372c48cb1d93fb862c89c53d64eb617ff7af50bc 100644 |
--- a/chrome/browser/speech/speech_recognizer_unittest.cc |
+++ b/chrome/browser/speech/speech_recognizer_unittest.cc |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
@@ -142,8 +142,8 @@ TEST_F(SpeechRecognizerTest, StopWithData) { |
// Issue the network callback to complete the process. |
TestURLFetcher* fetcher = url_fetcher_factory_.GetFetcherByID(0); |
ASSERT_TRUE(fetcher); |
- URLRequestStatus status; |
- status.set_status(URLRequestStatus::SUCCESS); |
+ net::URLRequestStatus status; |
+ status.set_status(net::URLRequestStatus::SUCCESS); |
fetcher->delegate()->OnURLFetchComplete( |
fetcher, fetcher->original_url(), status, 200, ResponseCookies(), |
"{\"hypotheses\":[{\"utterance\":\"123\"}]}"); |