Index: content/test/mock_resource_context.h |
diff --git a/content/test/mock_resource_context.h b/content/test/mock_resource_context.h |
index d25bcd62048dbba86b29cbda7612dd5c645ecdfa..3eb13c993c540a0a48ce543982c8703b70e1c412 100644 |
--- a/content/test/mock_resource_context.h |
+++ b/content/test/mock_resource_context.h |
@@ -8,7 +8,7 @@ |
#include "base/basictypes.h" |
#include "base/compiler_specific.h" |
-#include "base/memory/ref_counted.h" |
+#include "base/memory/scoped_ptr.h" |
eroman
2012/05/04 04:27:02
Is this header needed?
|
#include "content/public/browser/resource_context.h" |
namespace content { |
@@ -28,7 +28,7 @@ class MockResourceContext : public ResourceContext { |
virtual net::URLRequestContext* GetRequestContext() OVERRIDE; |
private: |
- scoped_refptr<net::URLRequestContext> test_request_context_; |
+ net::URLRequestContext* test_request_context_; |
DISALLOW_COPY_AND_ASSIGN(MockResourceContext); |
}; |