Index: webkit/tools/test_shell/simple_appcache_system.h |
diff --git a/webkit/tools/test_shell/simple_appcache_system.h b/webkit/tools/test_shell/simple_appcache_system.h |
index 14fd2f2c7d875553500214daef61dff2a6cd6d83..d850051f6ef9b703a00001a7e48c82630d29cb44 100644 |
--- a/webkit/tools/test_shell/simple_appcache_system.h |
+++ b/webkit/tools/test_shell/simple_appcache_system.h |
@@ -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. |
@@ -23,9 +23,8 @@ class SimpleFrontendProxy; |
namespace net { |
class URLRequest; |
-} // namespace net |
- |
class URLRequestContext; |
+} // namespace net |
// A class that composes the constituent parts of an appcache system |
// together for use in a single process with two relavant threads, |
@@ -50,7 +49,7 @@ class SimpleAppCacheSystem { |
// at a time, but after IO thread termination a new one can be |
// started on which this method should be called. The instance |
// is assumed to outlive the IO thread. |
- static void InitializeOnIOThread(URLRequestContext* request_context) { |
+ static void InitializeOnIOThread(net::URLRequestContext* request_context) { |
if (instance_) |
instance_->InitOnIOThread(request_context); |
} |
@@ -116,7 +115,7 @@ class SimpleAppCacheSystem { |
// Instance methods called by our static public methods |
void InitOnUIThread(const FilePath& cache_directory); |
- void InitOnIOThread(URLRequestContext* request_context); |
+ void InitOnIOThread(net::URLRequestContext* request_context); |
void CleanupIOThread(); |
WebKit::WebApplicationCacheHost* CreateCacheHostForWebKit( |
WebKit::WebApplicationCacheHostClient* client); |