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

Unified Diff: webkit/tools/test_shell/test_shell_request_context.h

Issue 11416382: ********** Content tests with blob hacking. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 8 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
Index: webkit/tools/test_shell/test_shell_request_context.h
===================================================================
--- webkit/tools/test_shell/test_shell_request_context.h (revision 186525)
+++ webkit/tools/test_shell/test_shell_request_context.h (working copy)
@@ -19,7 +19,7 @@
}
namespace webkit_blob {
-class BlobStorageController;
+class BlobStorageContext;
}
// A basic net::URLRequestContext that only provides an in-memory cookie store.
@@ -36,8 +36,8 @@
virtual ~TestShellRequestContext();
- webkit_blob::BlobStorageController* blob_storage_controller() const {
- return blob_storage_controller_.get();
+ webkit_blob::BlobStorageContext* blob_storage_context() const {
+ return blob_storage_context_.get();
}
fileapi::FileSystemContext* file_system_context() const {
@@ -49,7 +49,7 @@
bool no_proxy);
net::URLRequestContextStorage storage_;
- scoped_ptr<webkit_blob::BlobStorageController> blob_storage_controller_;
+ scoped_ptr<webkit_blob::BlobStorageContext> blob_storage_context_;
scoped_refptr<fileapi::FileSystemContext> file_system_context_;
};
« no previous file with comments | « webkit/tools/test_shell/simple_resource_loader_bridge.cc ('k') | webkit/tools/test_shell/test_shell_request_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698