diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-15 00:21:34 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-15 00:21:34 +0000 |
commit | aeb53f0e2f6352ec7fbc2113270a97072b42c764 (patch) | |
tree | 1f4da7884df919c21903a7881964273a9f7496fd /webkit | |
parent | ec8962ca7de01eb5685b32a4361dd7be8f7e6293 (diff) | |
download | chromium_src-aeb53f0e2f6352ec7fbc2113270a97072b42c764.zip chromium_src-aeb53f0e2f6352ec7fbc2113270a97072b42c764.tar.gz chromium_src-aeb53f0e2f6352ec7fbc2113270a97072b42c764.tar.bz2 |
net: Remove typedef net::URLRequestContext URLRequestContext;
BUG=64263
TEST=compiled locally, trybots
Review URL: http://codereview.chromium.org/6338002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71522 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
6 files changed, 15 insertions, 15 deletions
diff --git a/webkit/appcache/appcache_update_job_unittest.cc b/webkit/appcache/appcache_update_job_unittest.cc index 46f4cf7..66e145c 100644 --- a/webkit/appcache/appcache_update_job_unittest.cc +++ b/webkit/appcache/appcache_update_job_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. @@ -474,7 +474,7 @@ class IOThread : public base::Thread { Stop(); } - const scoped_refptr<URLRequestContext>& request_context() { + const scoped_refptr<net::URLRequestContext>& request_context() { return request_context_; } @@ -490,7 +490,7 @@ class IOThread : public base::Thread { } net::URLRequest::ProtocolFactory* old_factory_; - scoped_refptr<URLRequestContext> request_context_; + scoped_refptr<net::URLRequestContext> request_context_; }; } // namespace diff --git a/webkit/fileapi/file_system_operation.cc b/webkit/fileapi/file_system_operation.cc index ba0f3d5..bd0d7e5 100644 --- a/webkit/fileapi/file_system_operation.cc +++ b/webkit/fileapi/file_system_operation.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. @@ -131,7 +131,7 @@ void FileSystemOperation::Remove(const FilePath& path, bool recursive) { } void FileSystemOperation::Write( - scoped_refptr<URLRequestContext> url_request_context, + scoped_refptr<net::URLRequestContext> url_request_context, const FilePath& path, const GURL& blob_url, int64 offset) { diff --git a/webkit/fileapi/sandboxed_file_system_operation.cc b/webkit/fileapi/sandboxed_file_system_operation.cc index d866512..08569f9 100644 --- a/webkit/fileapi/sandboxed_file_system_operation.cc +++ b/webkit/fileapi/sandboxed_file_system_operation.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. @@ -120,7 +120,7 @@ void SandboxedFileSystemOperation::Remove( } void SandboxedFileSystemOperation::Write( - scoped_refptr<URLRequestContext> url_request_context, + scoped_refptr<net::URLRequestContext> url_request_context, const FilePath& path, const GURL& blob_url, int64 offset) { if (!VerifyFileSystemPathForWrite(path, true /* create */, FileSystemQuotaManager::kUnknownSize)) { diff --git a/webkit/tools/test_shell/simple_file_writer.cc b/webkit/tools/test_shell/simple_file_writer.cc index ad6109a..36ab1b3 100644 --- a/webkit/tools/test_shell/simple_file_writer.cc +++ b/webkit/tools/test_shell/simple_file_writer.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. @@ -19,7 +19,7 @@ using WebKit::WebFileWriterClient; using WebKit::WebString; using WebKit::WebURL; -URLRequestContext* SimpleFileWriter::request_context_ = NULL; +net::URLRequestContext* SimpleFileWriter::request_context_ = NULL; // Helper class to proxy to write and truncate calls to the IO thread, // and to proxy the results back to the main thead. There is a one-to-one diff --git a/webkit/tools/test_shell/simple_socket_stream_bridge.cc b/webkit/tools/test_shell/simple_socket_stream_bridge.cc index 517fcf1..696604e 100644 --- a/webkit/tools/test_shell/simple_socket_stream_bridge.cc +++ b/webkit/tools/test_shell/simple_socket_stream_bridge.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 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,7 +23,7 @@ static const int kNoSocketId = 0; namespace { MessageLoop* g_io_thread; -scoped_refptr<URLRequestContext> g_request_context; +scoped_refptr<net::URLRequestContext> g_request_context; class WebSocketStreamHandleBridgeImpl : public WebSocketStreamHandleBridge, @@ -219,7 +219,7 @@ void WebSocketStreamHandleBridgeImpl::DoOnClose() { /* static */ void SimpleSocketStreamBridge::InitializeOnIOThread( - URLRequestContext* request_context) { + net::URLRequestContext* request_context) { g_io_thread = MessageLoop::current(); g_request_context = request_context; } diff --git a/webkit/tools/test_shell/test_shell_request_context.h b/webkit/tools/test_shell/test_shell_request_context.h index 4baebc3..ff88d8e 100644 --- a/webkit/tools/test_shell/test_shell_request_context.h +++ b/webkit/tools/test_shell/test_shell_request_context.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. @@ -15,8 +15,8 @@ namespace webkit_blob { class BlobStorageController; } -// A basic URLRequestContext that only provides an in-memory cookie store. -class TestShellRequestContext : public URLRequestContext { +// A basic net::URLRequestContext that only provides an in-memory cookie store. +class TestShellRequestContext : public net::URLRequestContext { public: // Use an in-memory cache TestShellRequestContext(); |