Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(853)

Unified Diff: chrome/browser/autocomplete/search_provider_unittest.cc

Issue 6166010: net: Remove typedef net::URLRequestStatus URLRequestStatus; (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/autocomplete/search_provider.cc ('k') | chrome/browser/autofill/autofill_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autocomplete/search_provider_unittest.cc
diff --git a/chrome/browser/autocomplete/search_provider_unittest.cc b/chrome/browser/autocomplete/search_provider_unittest.cc
index 80ae91a0608592a006e0d22b5810e16610b95062..bf74e5f832f18362adc0b3d6db1bb2b2f08ac422 100644
--- a/chrome/browser/autocomplete/search_provider_unittest.cc
+++ b/chrome/browser/autocomplete/search_provider_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.
@@ -208,7 +208,7 @@ void SearchProviderTest::FinishDefaultSuggestQuery() {
// Tell the SearchProvider the default suggest query is done.
default_fetcher->delegate()->OnURLFetchComplete(
- default_fetcher, GURL(), URLRequestStatus(), 200, ResponseCookies(),
+ default_fetcher, GURL(), net::URLRequestStatus(), 200, ResponseCookies(),
std::string());
}
@@ -233,7 +233,7 @@ TEST_F(SearchProviderTest, QueryDefaultProvider) {
// Tell the SearchProvider the suggest query is done.
fetcher->delegate()->OnURLFetchComplete(
- fetcher, GURL(), URLRequestStatus(), 200, ResponseCookies(),
+ fetcher, GURL(), net::URLRequestStatus(), 200, ResponseCookies(),
std::string());
fetcher = NULL;
@@ -281,7 +281,7 @@ TEST_F(SearchProviderTest, QueryKeywordProvider) {
// Tell the SearchProvider the default suggest query is done.
default_fetcher->delegate()->OnURLFetchComplete(
- default_fetcher, GURL(), URLRequestStatus(), 200, ResponseCookies(),
+ default_fetcher, GURL(), net::URLRequestStatus(), 200, ResponseCookies(),
std::string());
default_fetcher = NULL;
@@ -298,7 +298,7 @@ TEST_F(SearchProviderTest, QueryKeywordProvider) {
// Tell the SearchProvider the keyword suggest query is done.
keyword_fetcher->delegate()->OnURLFetchComplete(
- keyword_fetcher, GURL(), URLRequestStatus(), 200, ResponseCookies(),
+ keyword_fetcher, GURL(), net::URLRequestStatus(), 200, ResponseCookies(),
std::string());
keyword_fetcher = NULL;
« no previous file with comments | « chrome/browser/autocomplete/search_provider.cc ('k') | chrome/browser/autofill/autofill_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698